mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-31 15:24:57 +00:00
Add SF2 IO buffer insertion
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
9b277fc21e
commit
db5765b443
6 changed files with 171 additions and 3 deletions
|
@ -73,3 +73,24 @@ module CFG4 (
|
|||
parameter [15:0] INIT = 16'h0;
|
||||
assign Y = INIT >> {D, C, B, A};
|
||||
endmodule
|
||||
|
||||
module CLKBUF (
|
||||
input PAD,
|
||||
output Y
|
||||
);
|
||||
assign Y = PAD;
|
||||
endmodule
|
||||
|
||||
module INBUF (
|
||||
input PAD,
|
||||
output Y
|
||||
);
|
||||
assign Y = PAD;
|
||||
endmodule
|
||||
|
||||
module OUTBUF (
|
||||
input D,
|
||||
output PAD
|
||||
);
|
||||
assign PAD = D;
|
||||
endmodule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue