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

github.com/coolgirl-multicart/coolgirl-famicom-multicart.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2020-09-14 23:48:52 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2020-09-14 23:50:23 +0300
commit72dcaf92dfa860d1cbcec9b2c7d02b2422c98007 (patch)
treece526c49a93707551b838070a8652ba529a48569
parent9a1ebabed84655575a8b8b7999f5eca1e9590583 (diff)
Fixed another error in pin planner
-rw-r--r--CoolGirl.qsf2
-rw-r--r--CoolGirl.v2
2 files changed, 2 insertions, 2 deletions
diff --git a/CoolGirl.qsf b/CoolGirl.qsf
index 6416f94..1f8da89 100644
--- a/CoolGirl.qsf
+++ b/CoolGirl.qsf
@@ -172,4 +172,4 @@ set_location_assignment PIN_60 -to cpu_addr_in[1]
set_location_assignment PIN_133 -to ppu_addr_out[18]
set_location_assignment PIN_5 -to sram_addr_out[14]
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to cpu_addr_in
-set_location_assignment PIN_18 -to ppu_rd_in \ No newline at end of file
+set_location_assignment PIN_20 -to ppu_rd_in \ No newline at end of file
diff --git a/CoolGirl.v b/CoolGirl.v
index 71593fc..9523bd4 100644
--- a/CoolGirl.v
+++ b/CoolGirl.v
@@ -109,7 +109,7 @@ module CoolGirl # (
ext_ntram_access ? 1'b1 : // disable internal NTRAM
~ppu_addr_in[13] /*1'bZ*/) // enable it otherwise
: 1'b0; // ground it while powering on for new famiclones
- assign ppu_not_a13_out = new_dendy_init_finished ? 1'bZ : 1'b0; // ground it while powering on for new famiclones
+ assign ppu_not_a13 = new_dendy_init_finished ? 1'bZ : 1'b0; // ground it while powering on for new famiclones
assign ppu_data_in = 8'bZZZZZZZZ;
always @ (posedge m2)