]> Joshua Wise's Git repositories - firearm.git/blobdiff - Fetch.v
Add a BigBlockRAM that's 8MB (and obviously not very synthesizable). Make system...
[firearm.git] / Fetch.v
diff --git a/Fetch.v b/Fetch.v
index 2a9d69d735afae91ee6f89338e555b931b5545a0..918e53c7faa2a8d2a93bf675a8716374a8015541 100644 (file)
--- a/Fetch.v
+++ b/Fetch.v
@@ -17,7 +17,7 @@ module Fetch(
        reg qjmp = 0;   /* A jump has been queued up while we were waiting. */
        reg [31:0] qjmppc;
        always @(posedge clk)
-               if ((rd_wait || stall) && jmp && !qjmp)
+               if ((rd_wait || stall) && jmp)
                        {qjmp,qjmppc} <= {jmp, jmppc};
                else if (!rd_wait && !stall && qjmp)    /* It has already been intoed. */
                        {qjmp,qjmppc} <= {1'b0, 32'hxxxxxxxx};
This page took 0.022309 seconds and 4 git commands to generate.