mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-05 02:40:25 +00:00
intel_alm: Add global buffer insertion
Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
parent
5dba138c87
commit
eb106732d9
19 changed files with 119 additions and 45 deletions
|
@ -10,3 +10,12 @@ module MISTRAL_IO((* iopad_external_pin *) inout PAD, input I, input OE, output
|
|||
assign PAD = OE ? I : 1'bz;
|
||||
assign O = PAD;
|
||||
endmodule
|
||||
|
||||
// Eventually, we should support clock enables and model them here too.
|
||||
// For now, CLKENA is used as a basic entry point to global routing.
|
||||
module MISTRAL_CLKBUF (
|
||||
input A,
|
||||
(* clkbuf_driver *) output Q
|
||||
);
|
||||
assign Q = A;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue