aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYRabbit <rabbit@yrabbit.cyou>2022-07-20 21:14:20 +1000
committerYRabbit <rabbit@yrabbit.cyou>2022-07-20 21:14:20 +1000
commit0285d471381d42cfa68eca2af0e83d112c087728 (patch)
tree483d8f5b1d13546f3294e813adf07a571d150a4a
parentce2335bc0065df5217585f341f7ed46aa8f66c36 (diff)
parentdfea954754966fccb65ca30592ce8c15dad45267 (diff)
downloadnextpnr-0285d471381d42cfa68eca2af0e83d112c087728.tar.gz
nextpnr-0285d471381d42cfa68eca2af0e83d112c087728.tar.bz2
nextpnr-0285d471381d42cfa68eca2af0e83d112c087728.zip
Merge branch 'master' into fix-muxes
-rw-r--r--nexus/pack.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/nexus/pack.cc b/nexus/pack.cc
index 0870bf40..15752171 100644
--- a/nexus/pack.cc
+++ b/nexus/pack.cc
@@ -43,7 +43,7 @@ Property Arch::parse_lattice_param_from_cell(const CellInfo *ci, IdString prop,
// Parse a possibly-Lattice-style (C literal in Verilog string) style parameter
Property Arch::parse_lattice_param(const Property &val, IdString prop, int width, const char *ci) const
{
- if (val.is_string) {
+ if (val.is_string && !prop.in(id_CSDECODE_A, id_CSDECODE_B, id_CSDECODE_R, id_CSDECODE_W)) {
const std::string &s = val.str;
Property temp;