mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-24 13:57:07 -04:00
Remove additional bitwise operator
This commit is contained in:
parent
4ffce9a752
commit
3df5a5abdd
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ module mdu import cvw::*; #(parameter cvw_t P) (
|
|||
// Start a divide when a new division instruction is received and the divider isn't already busy or finishing
|
||||
// When IDIV_ON_FPU is set, use the FPU divider instead
|
||||
// In ZMMUL, with M_SUPPORTED = 0, omit the divider
|
||||
if ((P.IDIV_ON_FPU & P.F_SUPPORTED) || (!P.M_SUPPORTED)) begin:nodiv
|
||||
if ((P.IDIV_ON_FPU & P.F_SUPPORTED) | (!P.M_SUPPORTED)) begin:nodiv
|
||||
assign QuotM = '0;
|
||||
assign RemM = '0;
|
||||
assign DivBusyE = 1'b0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue