mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
15 lines
199 B
Coq
15 lines
199 B
Coq
|
|
||
|
module OBUFT (O, I, T);
|
||
|
|
||
|
parameter CAPACITANCE = "DONT_CARE";
|
||
|
parameter integer DRIVE = 12;
|
||
|
parameter IOSTANDARD = "DEFAULT";
|
||
|
|
||
|
|
||
|
output O;
|
||
|
input I, T;
|
||
|
|
||
|
|
||
|
endmodule
|
||
|
|