18 lines
177 B
Coq
18 lines
177 B
Coq
|
|
`timescale 1us / 1ns
|
||
|
|
|
||
|
|
module usns;
|
||
|
|
initial begin
|
||
|
|
#123;
|
||
|
|
$mytest;
|
||
|
|
end
|
||
|
|
endmodule
|
||
|
|
|
||
|
|
`timescale 1ns / 1ns
|
||
|
|
|
||
|
|
module nsns;
|
||
|
|
initial begin
|
||
|
|
#456;
|
||
|
|
$mytest;
|
||
|
|
end
|
||
|
|
endmodule
|