14 lines
93 B
Coq
14 lines
93 B
Coq
|
|
module dut(a,);
|
||
|
|
|
||
|
|
input wire a;
|
||
|
|
|
||
|
|
endmodule
|
||
|
|
|
||
|
|
module top;
|
||
|
|
|
||
|
|
wire a;
|
||
|
|
|
||
|
|
dut i(.*);
|
||
|
|
|
||
|
|
endmodule
|