Update IR to make synth happy

This commit is contained in:
Matthew 2024-06-26 22:59:07 -05:00
parent 1c58b20cea
commit 44335fdac9

View File

@ -71,7 +71,7 @@ module ir (
always @(posedge updateIR or negedge resetn) begin
if (~resetn)
{BypassInstr, IDCodeInstr, DtmcsIntrs, DmiInstr} <= 4'b0100;
else if (updateIR)
else
{BypassInstr, IDCodeInstr, DtmcsIntrs, DmiInstr} <= decoded;
end
/* verilator lint_on SYNCASYNCNET */