mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-27 02:45:52 +00:00
Less verbose ABC output
This commit is contained in:
parent
0bb6b24c11
commit
7a4d5d1c0f
3 changed files with 55 additions and 23 deletions
|
@ -129,7 +129,8 @@ RTLIL::Design *abc_parse_blif(FILE *f, std::string dff_name)
|
|||
if (p == NULL)
|
||||
goto error;
|
||||
|
||||
RTLIL::Cell *cell = module->addCell(NEW_ID, RTLIL::escape_id(p));
|
||||
IdString celltype = RTLIL::escape_id(p);
|
||||
RTLIL::Cell *cell = module->addCell(NEW_ID, celltype);
|
||||
|
||||
while ((p = strtok(NULL, " \t\r\n")) != NULL) {
|
||||
char *q = strchr(p, '=');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue