blub
authorStefan Rebernig <stefan.rebernig@gmail.com>
Mon, 15 Nov 2010 15:37:15 +0000 (16:37 +0100)
committerStefan Rebernig <stefan.rebernig@gmail.com>
Mon, 15 Nov 2010 15:37:15 +0000 (16:37 +0100)
cpu/src/writeback_stage_b.vhd

index 86015cdb8f4c2ba5922f0f9212a88fd1b2eec3a5..eb09e1e5e7ba8c7ca3f44fa32003f5ab1dafc04f 100644 (file)
@@ -34,7 +34,11 @@ syn: process(sys_clk, reset)
 begin
 
        if (reset = RESET_VALUE) then
-
+               wb_reg_nxt.address <= (others => '0');
+               wb_reg_nxt.dmem_en <= '0';
+               wb_reg_nxt.dmem_write_en <= '0';
+               wb_reg_nxt.hword <= '0';
+               wb_reg_nxt.byte_s <= '0';
        elsif rising_edge(sys_clk) then
                wb_reg <= wb_reg_nxt;
        end if;