13 lines
157 B
Coq
13 lines
157 B
Coq
|
|
module test();
|
||
|
|
wire a, b;
|
||
|
|
a__a a_(
|
||
|
|
.b_buf(b),
|
||
|
|
.b (a)
|
||
|
|
);
|
||
|
|
endmodule
|
||
|
|
|
||
|
|
module a__a(b_buf, b);
|
||
|
|
output b_buf;
|
||
|
|
input b;
|
||
|
|
endmodule
|