mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
13 lines
136 B
Coq
13 lines
136 B
Coq
|
module BUFG (/*AUTOARG*/
|
||
|
// Outputs
|
||
|
O,
|
||
|
// Inputs
|
||
|
I
|
||
|
);
|
||
|
input I;
|
||
|
output O;
|
||
|
|
||
|
assign O = I;
|
||
|
|
||
|
endmodule // IBUFDS
|