Skip to content

Commit

Permalink
Ignore COOLBOY GPIO mode for addresses < $8000
Browse files Browse the repository at this point in the history
  • Loading branch information
ClusterM committed Nov 20, 2022
1 parent 6e4e3e5 commit 1a92225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CPLD/FamicomDumper.v
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module FamicomDumper # (
);

assign romsel = !(m2 && a15 && ne1_active);
assign cpu_rw = reg_cpu_rw || (coolboy_mode && VERSION_3);
assign cpu_rw = reg_cpu_rw || (coolboy_mode && !romsel && VERSION_3);
assign cpu_oe = !cpu_shifter_enabled;
assign cpu_dir = !reg_cpu_rw;
assign ppu_rd = !(!ne2 && !noe);
Expand Down

0 comments on commit 1a92225

Please sign in to comment.