]> Joshua Wise's Git repositories - firearm.git/blobdiff - BlockRAM.v
tests/testbench: Commit new .hex file built with -O3 (2fast2furious).
[firearm.git] / BlockRAM.v
index a86ec7592ad0f5a315977d54319e2b3ad56cd6df..e0eceeb8009caa4c458c95301ca5666d6fb8e09a 100644 (file)
@@ -31,7 +31,7 @@ module BlockRAM(
        always @(posedge clk)
        begin
                if (bus_wr && decode)
-                       data[ramaddr[13:2]] <= bus_wdata;
+                       data[ramaddr[13:2]] = bus_wdata;
                
                /* This is not allowed to be conditional -- stupid Xilinx
                 * blockram. */
This page took 0.022842 seconds and 4 git commands to generate.