11 lines
138 B
Coq
11 lines
138 B
Coq
|
|
module test();
|
||
|
|
a a_(
|
||
|
|
.b_buf(b),
|
||
|
|
.b (b)
|
||
|
|
);
|
||
|
|
endmodule // test
|
||
|
|
|
||
|
|
module a(b, b_buf);
|
||
|
|
input b, b_buf;
|
||
|
|
endmodule // a_
|