11 lines
150 B
Coq
11 lines
150 B
Coq
|
|
module test();
|
||
|
|
wire b;
|
||
|
|
a a( .b_buf(b),
|
||
|
|
.b (b));
|
||
|
|
endmodule // test
|
||
|
|
|
||
|
|
|
||
|
|
module a(output b_buf, input b);
|
||
|
|
assign b_buf = 1'b0;
|
||
|
|
endmodule // a
|