aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/cells.cc
diff options
context:
space:
mode:
authorWilliam D. Jones <thor0505@comcast.net>2021-01-31 23:29:04 -0500
committergatecat <gatecat@ds0.me>2021-02-12 10:36:59 +0000
commitc9487293e9e85a34879a3e5a45b637c7f24e5584 (patch)
tree4108ef44c9f505507cecdd139610f6f3a74882fc /machxo2/cells.cc
parentd0b822c0365c52a8a8439094f2268cfa0c461b5e (diff)
downloadnextpnr-c9487293e9e85a34879a3e5a45b637c7f24e5584.tar.gz
nextpnr-c9487293e9e85a34879a3e5a45b637c7f24e5584.tar.bz2
nextpnr-c9487293e9e85a34879a3e5a45b637c7f24e5584.zip
machxo2: Fix REGMODE identifier (per slice, not per-FF).
Diffstat (limited to 'machxo2/cells.cc')
-rw-r--r--machxo2/cells.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/machxo2/cells.cc b/machxo2/cells.cc
index dd673c38..20e68ab5 100644
--- a/machxo2/cells.cc
+++ b/machxo2/cells.cc
@@ -59,12 +59,11 @@ std::unique_ptr<CellInfo> create_machxo2_cell(Context *ctx, IdString type, std::
new_cell->params[id_LSRONMUX] = std::string("LSRMUX");
new_cell->params[id_LUT0_INITVAL] = Property(0xFFFF, 16);
new_cell->params[id_LUT1_INITVAL] = Property(0xFFFF, 16);
+ new_cell->params[id_REGMODE] = std::string("FF");
new_cell->params[id_REG0_SD] = std::string("1");
new_cell->params[id_REG1_SD] = std::string("1");
new_cell->params[id_REG0_REGSET] = std::string("SET");
new_cell->params[id_REG1_REGSET] = std::string("SET");
- new_cell->params[id_REG0_REGMODE] = std::string("FF");
- new_cell->params[id_REG1_REGMODE] = std::string("FF");
new_cell->params[id_CCU2_INJECT1_0] = std::string("YES");
new_cell->params[id_CCU2_INJECT1_1] = std::string("YES");
new_cell->params[id_WREMUX] = std::string("INV");