mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
pass jny: fixed missing quotes around the type value for the cell sort
This commit is contained in:
parent
2e792857e9
commit
5a016713cc
|
@ -302,7 +302,7 @@ struct JnyWriter
|
||||||
const auto _indent = gen_indent(indent_level);
|
const auto _indent = gen_indent(indent_level);
|
||||||
|
|
||||||
f << _indent << "{\n";
|
f << _indent << "{\n";
|
||||||
f << stringf(" %s\"type\": %s,\n", _indent.c_str(), sort.first.c_str());
|
f << stringf(" %s\"type\": \"%s\",\n", _indent.c_str(), sort.first.c_str());
|
||||||
f << _indent << " \"ports\": [\n";
|
f << _indent << " \"ports\": [\n";
|
||||||
|
|
||||||
write_cell_ports(port_cell, indent_level + 2);
|
write_cell_ports(port_cell, indent_level + 2);
|
||||||
|
|
Loading…
Reference in a new issue