diff options
author | ECP5-PCIe <ECP5-PCIe@protonmail.com> | 2021-08-22 18:08:04 +0200 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-08-22 18:48:44 +0200 |
commit | dfc453b246c3b211a8c5df5e04c7afe2451b0986 (patch) | |
tree | 543fdf93f82e804c9718adcd86e26ef0255222d1 | |
parent | 9cbff3a4a972f359d3842b689e135d4f906d763b (diff) | |
download | yosys-dfc453b246c3b211a8c5df5e04c7afe2451b0986.tar.gz yosys-dfc453b246c3b211a8c5df5e04c7afe2451b0986.tar.bz2 yosys-dfc453b246c3b211a8c5df5e04c7afe2451b0986.zip |
Add DLLDELD
-rw-r--r-- | techlibs/ecp5/cells_bb.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/techlibs/ecp5/cells_bb.v b/techlibs/ecp5/cells_bb.v index c9a6e5232..e616d24d6 100644 --- a/techlibs/ecp5/cells_bb.v +++ b/techlibs/ecp5/cells_bb.v @@ -340,6 +340,15 @@ module DDRDLLA( endmodule (* blackbox *) +module DLLDELD( + input A, DDRDEL, LOADN, MOVE, DIRECTION, + output Z, CFLAG +); + parameter DEL_ADJ = "PLUS"; + parameter DEL_VAL = 0; +endmodule + +(* blackbox *) module CLKDIVF( input CLKI, RST, ALIGNWD, output CDIVX |