mirror of https://github.com/YosysHQ/nextpnr.git
Fix the boolean.
Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
This commit is contained in:
parent
d613626ab9
commit
881fd97c5a
|
|
@ -520,7 +520,7 @@ void Arch::read_cst(std::istream &in)
|
|||
std::string attr = "&";
|
||||
attr += match[2];
|
||||
boost::algorithm::to_upper(attr);
|
||||
it->second->attrs[id(attr)] = 0;
|
||||
it->second->attrs[id(attr)] = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue