mirror of https://github.com/YosysHQ/yosys.git
Fixed building verific bindings
This commit is contained in:
parent
cad98bcd89
commit
593264e9ed
|
@ -6,7 +6,7 @@ only have the i386 eval version of Verific:
|
|||
1.) Use a Makefile.conf like the following one:
|
||||
|
||||
--snip--
|
||||
CONFIG := clang-debug
|
||||
CONFIG := clang
|
||||
ENABLE_TCL := 0
|
||||
ENABLE_QT4 := 0
|
||||
ENABLE_ABC := 0
|
||||
|
|
|
@ -687,7 +687,7 @@ static void import_netlist(RTLIL::Design *design, Netlist *nl, std::set<Netlist*
|
|||
RTLIL::SigSpec data = operatorOutput(inst, net_map, module);
|
||||
|
||||
RTLIL::Cell *cell = module->addCell(RTLIL::escape_id(inst->Name()), "$memrd");
|
||||
cell->parameters["\\MEMID"] = memory->name;
|
||||
cell->parameters["\\MEMID"] = memory->name.str();
|
||||
cell->parameters["\\CLK_ENABLE"] = false;
|
||||
cell->parameters["\\CLK_POLARITY"] = true;
|
||||
cell->parameters["\\TRANSPARENT"] = false;
|
||||
|
@ -709,7 +709,7 @@ static void import_netlist(RTLIL::Design *design, Netlist *nl, std::set<Netlist*
|
|||
RTLIL::SigSpec data = operatorInput2(inst, net_map);
|
||||
|
||||
RTLIL::Cell *cell = module->addCell(RTLIL::escape_id(inst->Name()), "$memwr");
|
||||
cell->parameters["\\MEMID"] = memory->name;
|
||||
cell->parameters["\\MEMID"] = memory->name.str();
|
||||
cell->parameters["\\CLK_ENABLE"] = false;
|
||||
cell->parameters["\\CLK_POLARITY"] = true;
|
||||
cell->parameters["\\PRIORITY"] = 0;
|
||||
|
|
Loading…
Reference in New Issue