diff options
author | gatecat <gatecat@ds0.me> | 2021-07-06 11:46:45 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-07-06 14:07:20 +0100 |
commit | 2b8f1633ce7800b4f0315f0206fd0bf9fba5237c (patch) | |
tree | 5d6c182d80bffc00c38f59b204d5e96a37f492ba /techlibs/ecp5 | |
parent | 676c544abe09a8a7b062be77c3e6e263f6ee86f3 (diff) | |
download | yosys-2b8f1633ce7800b4f0315f0206fd0bf9fba5237c.tar.gz yosys-2b8f1633ce7800b4f0315f0206fd0bf9fba5237c.tar.bz2 yosys-2b8f1633ce7800b4f0315f0206fd0bf9fba5237c.zip |
ecp5: Add DCSC blackbox
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'techlibs/ecp5')
-rw-r--r-- | techlibs/ecp5/cells_bb.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/techlibs/ecp5/cells_bb.v b/techlibs/ecp5/cells_bb.v index c4cedfe36..c9a6e5232 100644 --- a/techlibs/ecp5/cells_bb.v +++ b/techlibs/ecp5/cells_bb.v @@ -369,6 +369,16 @@ module DCCA( ); endmodule +(* blackbox *) +module DCSC( + input CLK1, CLK0, + input SEL1, SEL0, + input MODESEL, + output DCSOUT +); + parameter DCSMODE = "POS"; +endmodule + (* blackbox *) (* keep *) module DCUA( input CH0_HDINP, CH1_HDINP, CH0_HDINN, CH1_HDINN, |