static branch 1.0
[calu.git] / cpu / src / decode_stage_b.vhd
index 92c0f7186d645f4b47b6a9f929fe3f2482f663b7..c8075a1d627d660170989af6bb4fc57746024cb2 100644 (file)
@@ -67,6 +67,7 @@ begin
                dec_op_inst.saddr2 <= (others => '0');
                dec_op_inst.daddr <= (others => '0');
                dec_op_inst.displacement <= (others => '0');
+               dec_op_inst.prog_cnt <= (others => '0');
 
        elsif rising_edge(clk) then
                rtw_rec <= rtw_rec_nxt;
@@ -117,6 +118,7 @@ begin
        dec_op_inst_nxt.daddr <= instr_spl.reg_dest_addr; --(others => '0');
        dec_op_inst_nxt.op_group <= instr_spl.op_group;
        dec_op_inst_nxt.displacement <= instr_spl.displacement;
+       dec_op_inst_nxt.prog_cnt <= prog_cnt;
 
 end process;