Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e2529f92cedbbcb87ff4328ff53705669050198d
/
.
/
src
/
Testcases
/
Icarus
/
ivltests
/
pr513.v
blob: 2524094964af7002da736b7ed1d387de4e40961d [
file
] [
log
] [
blame
]
/*
* Derived from PR#513
*/
`timescale 1 ps / 1 ps
module example;
integer fd;
initial begin
#100
fd = $fopen( "example.dump" );
$fdisplay( fd );
#1000
$display( "PASSED" );
end
endmodule