7 lines
121 B
Coq
7 lines
121 B
Coq
|
|
module bufifab (output Out0, output Out1, input I, input E);
|
||
|
|
|
||
|
|
bufif0 (Out0, I, E);
|
||
|
|
bufif1 (Out1, I, E);
|
||
|
|
|
||
|
|
endmodule
|