diff options
author | gatecat <gatecat@ds0.me> | 2021-03-29 21:35:44 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-03-29 21:35:44 +0100 |
commit | a6a92f6b6b586cdb6e300e00b2fcd0145925fff3 (patch) | |
tree | 43c0a06a75406d36cfa952bd18a637c3e78949be | |
parent | 0b1e0895478ab9c8bfb9299c2429f265bd4d1229 (diff) | |
download | nextpnr-a6a92f6b6b586cdb6e300e00b2fcd0145925fff3.tar.gz nextpnr-a6a92f6b6b586cdb6e300e00b2fcd0145925fff3.tar.bz2 nextpnr-a6a92f6b6b586cdb6e300e00b2fcd0145925fff3.zip |
nexus: Fix default IO config
Signed-off-by: gatecat <gatecat@ds0.me>
-rw-r--r-- | nexus/fasm.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nexus/fasm.cc b/nexus/fasm.cc index c818123d..a68e524c 100644 --- a/nexus/fasm.cc +++ b/nexus/fasm.cc @@ -365,6 +365,8 @@ struct NexusFasmWriter const char *iodir = is_input ? "INPUT" : (is_output ? "OUTPUT" : "BIDIR"); write_bit(stringf("BASE_TYPE.%s_%s", iodir, str_or_default(cell->attrs, id_IO_TYPE, "LVCMOS33").c_str())); write_ioattr(cell, "PULLMODE", "NONE"); + write_ioattr(cell, "GLITCHFILTER", "OFF"); + write_ioattr(cell, "SLEWRATE", "MED"); write_cell_muxes(cell); pop(); } |