Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
real7.v
blob: 9b4f8afd04fce125ab4b7e51c17286ce4ded91b3 [
file
] [
log
] [
blame
] [
edit
]
// 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