mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Remove additional bitwise operator
This commit is contained in:
parent
4ffce9a752
commit
3df5a5abdd
@ -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
|
// 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
|
// When IDIV_ON_FPU is set, use the FPU divider instead
|
||||||
// In ZMMUL, with M_SUPPORTED = 0, omit the divider
|
// 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 QuotM = '0;
|
||||||
assign RemM = '0;
|
assign RemM = '0;
|
||||||
assign DivBusyE = 1'b0;
|
assign DivBusyE = 1'b0;
|
||||||
|
Loading…
Reference in New Issue
Block a user