Fix MULW DIVW DIVUW, update current_status.txt

This commit is contained in:
Shashank Holla 2023-04-02 18:32:15 -04:00 committed by Blaise Tine
parent 01723a6df0
commit f3ca7b75cb
2 changed files with 4 additions and 0 deletions

View file

@ -218,6 +218,7 @@ void dpi_idiv(bool enable, INT_LEN a, INT_LEN b, bool is_signed, INT_LEN* quotie
*remainder = dividen % divisor;
}
}
dpi_trace(1, "DIV - %d %lld %lld %lld %lld %lld %lld\n",is_signed , a, b, dividen, divisor, *quotient, *remainder);
}
#endif

View file

@ -43,6 +43,9 @@
`INST_MUL_DIVU: `TRACE(level, ("DIVU")); \
`INST_MUL_REM: `TRACE(level, ("REM")); \
`INST_MUL_REMU: `TRACE(level, ("REMU")); \
`INST_MUL_MULW: `TRACE(level, ("MULW")); \
`INST_MUL_DIVW: `TRACE(level, ("DIVW")); \
`INST_MUL_DIVUW: `TRACE(level, ("DIVUW")); \
default: `TRACE(level, ("?")); \
endcase \
end else begin \