mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-08 12:11:24 +00:00
Import more std:: stuff into Yosys namespace
This commit is contained in:
parent
da923c198e
commit
207736b4ee
39 changed files with 168 additions and 161 deletions
|
@ -392,7 +392,7 @@ Aig::Aig(Cell *cell)
|
|||
|
||||
if (cell->type.in("$eq", "$ne"))
|
||||
{
|
||||
int width = std::max(GetSize(cell->getPort("\\A")), GetSize(cell->getPort("\\B")));
|
||||
int width = max(GetSize(cell->getPort("\\A")), GetSize(cell->getPort("\\B")));
|
||||
vector<int> A = mk.inport_vec("\\A", width);
|
||||
vector<int> B = mk.inport_vec("\\B", width);
|
||||
int Y = mk.bool_node(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue