mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
updated fcmp.sv instantiation to remove x*'s
This commit is contained in:
parent
37451b8978
commit
e97dd080a0
@ -76,7 +76,12 @@ module fcmp (
|
|||||||
|
|
||||||
// Determine final values based on output of magnitude comparison,
|
// Determine final values based on output of magnitude comparison,
|
||||||
// sign bits, and special case testing.
|
// sign bits, and special case testing.
|
||||||
exception_cmp_2 exc2 (.invalid(Invalid), .fcc(FCC), .LT_mag(LT), .EQ_mag(EQ), .ANaN(XNaNE), .BNaN(YNaNE), .Azero(XZeroE), .Bzero(YZeroE), .FOpCtrlE(FOpCtrlE), .A(op1), .B(op2), .FSrcXE, .FSrcYE, .*);
|
exception_cmp_2 exc2 (
|
||||||
|
.invalid(Invalid), .fcc(FCC), .LT_mag(LT), .EQ_mag(EQ),
|
||||||
|
.ANaN(XNaNE), .BNaN(YNaNE), .Azero(XZeroE), .Bzero(YZeroE),
|
||||||
|
.FOpCtrlE, .A(op1), .B(op2), .FSrcXE, .FSrcYE,
|
||||||
|
.FmtE, .CmpResE
|
||||||
|
);
|
||||||
|
|
||||||
endmodule // fpcomp
|
endmodule // fpcomp
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user