1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/xilibs/dv/BUFG.v

13 lines
136 B
Coq
Raw Normal View History

module BUFG (/*AUTOARG*/
// Outputs
O,
// Inputs
I
);
input I;
output O;
assign O = I;
endmodule // IBUFDS