aboutsummaryrefslogtreecommitdiffstats
path: root/mistral/pins.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-10-05 13:59:36 +0100
committerGitHub <noreply@github.com>2021-10-05 13:59:36 +0100
commit4f17a1711abc6d74c367457a1956c779a789e0e9 (patch)
treed8a2c6f41f7c97b3ba56d73821a4d462ccce3842 /mistral/pins.cc
parent9c32e2d852ef4030cf7ee74331e09e32a4d21f9a (diff)
parentf5f7ef68649e873e6e5dc912544ed8abb5eb8fc3 (diff)
downloadnextpnr-4f17a1711abc6d74c367457a1956c779a789e0e9.tar.gz
nextpnr-4f17a1711abc6d74c367457a1956c779a789e0e9.tar.bz2
nextpnr-4f17a1711abc6d74c367457a1956c779a789e0e9.zip
Merge pull request #837 from YosysHQ/gatecat/mistral-mlab-2
mistral: Adding support for MLABs as memory
Diffstat (limited to 'mistral/pins.cc')
-rw-r--r--mistral/pins.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/mistral/pins.cc b/mistral/pins.cc
index 51cb83c4..120ccbb2 100644
--- a/mistral/pins.cc
+++ b/mistral/pins.cc
@@ -44,7 +44,11 @@ const dict<IdString, Arch::CellPinsData> Arch::cell_pins_db = {
{id_SDATA, PINSTYLE_DEDI},
{id_DATAIN, PINSTYLE_INP},
}},
-};
+ {id_MISTRAL_MLAB,
+ {
+ {id_CLK1, PINSTYLE_CLK},
+ {id_A1EN, PINSTYLE_CE},
+ }}};
CellPinStyle Arch::get_cell_pin_style(const CellInfo *cell, IdString port) const
{