]> Joshua Wise's Git repositories - fpgaboy.git/commitdiff
Fix some really dumb no-synthesize issues LIKE NOT TYPING THE MODULE NAME CORRECTLY...
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Tue, 6 May 2008 11:48:49 +0000 (07:48 -0400)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Tue, 6 May 2008 11:48:49 +0000 (07:48 -0400)
GBZ80Core.v
System.v

index 8970e5d7132861495e894b319f8f3510f85333e2..e1aa3087b0a94f4cb7e422c3160b7849bf334c5a 100644 (file)
@@ -333,8 +333,6 @@ module GBZ80Core(
                        end
                        wr <= 0;
                        rd <= 0;
-                       buswr <= 0;
-                       busrd <= 0;
                        address <= 16'bxxxxxxxxxxxxxxxx;        // Make it obvious if something of type has happened.
                        wdata <= 8'bxxxxxxxx;
                        state <= `STATE_EXECUTE;
index 95b715cd322e0806612ad899662648027a675c7a..b1d4c3d90241b3aaab8ac4f103e1dbf292c177b9 100644 (file)
--- a/System.v
+++ b/System.v
@@ -262,11 +262,11 @@ module CoreTop(
                .data(data[0]),
                .clk(clk),
                .wr(wr[0]),
-               .rd(rd[0])
+               .rd(rd[0]),
                .cr_nADV(cr_nADV),
                .cr_nCE(cr_nCE),
                .cr_nOE(cr_nOE),
-               .cr_nWR(cr_nWE),
+               .cr_nWE(cr_nWE),
                .cr_CRE(cr_CRE),
                .cr_nLB(cr_nLB),
                .cr_nUB(cr_nUB),
This page took 0.02724 seconds and 4 git commands to generate.