Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
861ed7dc3ad91ddad1bf155cd28bdc110f3a5abb
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
constadd3.v
blob: cedd1271fca39600788435989cb03dfce391e5d0 [
file
]
module
test
;
integer i
;
initial
begin
i
=
7
+
1
;
if
(
i
!=
8
)
$display
(
"FAILED -- i = %0d != 8"
,
i
);
else
$display
(
"PASSED"
);
end
endmodule