Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/famicom-dumper-writer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-31 21:23:12 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-31 21:23:12 +0300
commitfbb4596d50d2957dd505bf31f138016fadcc4794 (patch)
tree839a33d5bc6bff433732e3ba4afe77bf87f949c6
parenteb2a3bf89fe8e2def55c053f50a3b72a17d6be00 (diff)
COOLBOY mode
-rw-r--r--CPLD/FamicomDumper.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/CPLD/FamicomDumper.v b/CPLD/FamicomDumper.v
index 8ef5fb8..9807114 100644
--- a/CPLD/FamicomDumper.v
+++ b/CPLD/FamicomDumper.v
@@ -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 && VERSION_3);
assign cpu_oe = !cpu_shifter_enabled;
assign cpu_dir = !reg_cpu_rw;
assign ppu_rd = !(!ne2 && !noe);