Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
real7.v
blob: 9b4f8afd04fce125ab4b7e51c17286ce4ded91b3 [
file
] [
log
] [
blame
]
// Verify that icarus can handle real compare versus int constant
module
test
();
real myv
;
parameter myp
=
1.0
;
initial
begin
myv
=
1.0
;
if
(
myv
<=
1
)
$display
(
"PASSED"
);
else
$display
(
"FAILED"
);
end
endmodule