blob: 2524094964af7002da736b7ed1d387de4e40961d [file] [log] [blame] [edit]
/*
* 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