Skip to content

Commit

Permalink
remove channel enable bits as they interfere with mem.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jotego committed Jan 20, 2025
1 parent d36eef3 commit bbaab07
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion cores/fround/hdl/jtfround_game.v
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ jttmnt_sound u_sound(
.title ( ),
// Debug
.debug_bus ( debug_bus ),
.snd_en ( snd_en ),
.st_dout ( st_snd )
);

Expand Down
1 change: 0 additions & 1 deletion cores/tmnt/hdl/jttmnt_game.v
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ jttmnt_sound u_sound(
.title ( title ),
// Debug
.debug_bus ( debug_bus ),
.snd_en ( snd_en ),
.st_dout ( st_snd )
);

Expand Down
3 changes: 1 addition & 2 deletions cores/tmnt/hdl/jttmnt_sound.v
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ module jttmnt_sound(
output signed [ 8:0] upd,
// Debug
input [ 7:0] debug_bus,
input [ 5:0] snd_en,
output [ 7:0] st_dout
);
`ifndef NOSOUND
Expand Down Expand Up @@ -297,7 +296,7 @@ jt053260 u_k53260(
.romd_cs ( pcmd_cs ),
// .romd_ok ( pcmd_ok ),
// sound output - raw
.ch_en (snd_en[4:0]),
.ch_en ( 5'h1f ),
.aux_l ( 16'd0 ),
.aux_r ( 16'd0 ),
.snd_l ( k60_l ),
Expand Down
1 change: 0 additions & 1 deletion cores/twin16/hdl/jttwin16_game.v
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,6 @@ jttmnt_sound u_sound(
.k60_r ( ),
.title ( ),
// Debug
.snd_en ( snd_en ),
.debug_bus ( debug_bus ),
.st_dout ( st_snd )
);
Expand Down

0 comments on commit bbaab07

Please sign in to comment.