start with PC 0
Stefan Schuermans

Stefan Schuermans commited on 2012-02-09 20:43:15
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -261,7 +261,7 @@ BEGIN
261 261
     p_sync_pc: PROCESS(rst, clk)
262 262
     BEGIN
263 263
         IF rst = '1' THEN
264
-            r_pc <= (OTHERS => '0');
264
+            r_pc <= X"FFFFFFFC";
265 265
         ELSIF rising_edge(clk) THEN
266 266
             IF s_stall = '0' THEN
267 267
                 r_pc <= n_pc;
268 268