mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-31 00:13:18 +00:00
xilinx: Add simulation model for IBUFG.
This commit is contained in:
parent
3fb604c75d
commit
526fe4cb89
5 changed files with 14 additions and 33 deletions
|
@ -38,6 +38,17 @@ module IBUF(
|
|||
assign O = I;
|
||||
endmodule
|
||||
|
||||
module IBUFG(
|
||||
output O,
|
||||
(* iopad_external_pin *)
|
||||
input I);
|
||||
parameter CAPACITANCE = "DONT_CARE";
|
||||
parameter IBUF_DELAY_VALUE = "0";
|
||||
parameter IBUF_LOW_PWR = "TRUE";
|
||||
parameter IOSTANDARD = "DEFAULT";
|
||||
assign O = I;
|
||||
endmodule
|
||||
|
||||
module OBUF(
|
||||
(* iopad_external_pin *)
|
||||
output O,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue