aboutsummaryrefslogtreecommitdiffstats
path: root/nexus
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-01-11 20:12:50 +0000
committerDavid Shah <dave@ds0.me>2020-11-30 08:45:27 +0000
commit2fc75bae79e605ae2f778469999a6567d0c6b4dc (patch)
tree63b97015a7d9663efdf1ac5693e39a7a217006c6 /nexus
parentee4e30ce8ba11ae889ec3b8b19eef49d5459c69a (diff)
downloadnextpnr-2fc75bae79e605ae2f778469999a6567d0c6b4dc.tar.gz
nextpnr-2fc75bae79e605ae2f778469999a6567d0c6b4dc.tar.bz2
nextpnr-2fc75bae79e605ae2f778469999a6567d0c6b4dc.zip
nexus: Fix FF naming
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'nexus')
-rw-r--r--nexus/fasm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/nexus/fasm.cc b/nexus/fasm.cc
index 7db5a1ba..45c02514 100644
--- a/nexus/fasm.cc
+++ b/nexus/fasm.cc
@@ -175,7 +175,7 @@ struct NexusFasmWriter
char slice = 'A' + (z >> 3);
push_tile(bel.tile, id_PLC);
push(stringf("SLICE%c", slice));
- push(stringf("FF%d", k));
+ push(stringf("REG%d", k));
write_bit("USED.YES");
write_enum(cell, "REGSET", "RESET");
write_enum(cell, "LSRMODE", "LSR");