]> Joshua Wise's Git repositories - firearm.git/blobdiff - BlockRAM.v
Merge nyus:/storage/git/firearm
[firearm.git] / BlockRAM.v
index 30f7515c698dc33d7de61d5ae55a6e1b0f9ec937..a86ec7592ad0f5a315977d54319e2b3ad56cd6df 100644 (file)
@@ -12,7 +12,7 @@ module BlockRAM(
         * 0x00004000.  rdata and ready must be driven to zero if the
         * address is not within the range of this module.
         */
-       wire decode = (bus_addr & ~32'h00003FFF) == 32'h00000000;
+       wire decode = bus_addr[31:14] == 18'b0;
        wire [13:0] ramaddr = {bus_addr[13:2], 2'b0};   /* mask off lower two bits
                                                         * for word alignment */
 
This page took 0.022806 seconds and 4 git commands to generate.