7 lines
127 B
Coq
7 lines
127 B
Coq
|
|
module test(input b);
|
||
|
|
a ua(.BISTEA(b), .BISTEB(b));
|
||
|
|
endmodule // test
|
||
|
|
|
||
|
|
module a (input BISTEA, input BISTEB);
|
||
|
|
endmodule // a
|