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