10 lines
104 B
Coq
10 lines
104 B
Coq
|
|
module top_module();
|
||
|
|
|
||
|
|
integer Value1;
|
||
|
|
|
||
|
|
integer Value2 = Value1;
|
||
|
|
|
||
|
|
initial $display("PASSED");
|
||
|
|
|
||
|
|
endmodule
|