diff options
author | Maciej Kurc <mkurc@antmicro.com> | 2021-09-17 15:52:56 +0200 |
---|---|---|
committer | Maciej Kurc <mkurc@antmicro.com> | 2021-09-17 15:52:56 +0200 |
commit | 8ffd30cb2d4e1f9f231844280d5ad7a6b8c8b850 (patch) | |
tree | 45f3c5841d46b91c84ddd100d54a8019fc698818 /nexus/fasm.cc | |
parent | ef9eee6b15a5b1a8429af10769c6629241db95db (diff) | |
download | nextpnr-8ffd30cb2d4e1f9f231844280d5ad7a6b8c8b850.tar.gz nextpnr-8ffd30cb2d4e1f9f231844280d5ad7a6b8c8b850.tar.bz2 nextpnr-8ffd30cb2d4e1f9f231844280d5ad7a6b8c8b850.zip |
Use correct names for IDDRX1_ODDRX1 FASM features
Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
Diffstat (limited to 'nexus/fasm.cc')
-rw-r--r-- | nexus/fasm.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/nexus/fasm.cc b/nexus/fasm.cc index d6a3796a..c4eb9a1b 100644 --- a/nexus/fasm.cc +++ b/nexus/fasm.cc @@ -567,15 +567,11 @@ struct NexusFasmWriter push_bel(bel); write_enum(cell, "MODE"); write_enum(cell, "IDDRX1_ODDRX1.OUTPUT"); + write_enum(cell, "IDDRX1_ODDRX1.TRISTATE"); write_enum(cell, "GSR", "DISABLED"); write_enum(cell, "TSREG.REGSET", "RESET"); write_cell_muxes(cell); pop(); - - // FIXME: Workaround for unknown bits - push_tile(bel.tile); - write_enum(cell, "UNKNOWN"); - pop(); } // Write config for some kind of DSP cell |