mirror of https://github.com/zachjs/sv2v.git
17 lines
270 B
Coq
17 lines
270 B
Coq
|
|
module top;
|
||
|
|
wire [0:54] data;
|
||
|
|
reg clock;
|
||
|
|
foo f(clock, data);
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
clock = 1;
|
||
|
|
forever #1 clock = ~clock;
|
||
|
|
end
|
||
|
|
|
||
|
|
initial begin : foo
|
||
|
|
$monitor("%d %b", $time, data);
|
||
|
|
#100;
|
||
|
|
$finish();
|
||
|
|
end
|
||
|
|
endmodule
|