diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-06-10 23:00:12 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-06-10 23:00:12 +0200 |
commit | 1ae360cf725db65c54c69042bcef66f1728b4df6 (patch) | |
tree | 5dca46356d177859372621dd31c02075221a80f9 /backends | |
parent | e5348817947be85cb69f42c7e0ec0706d0511f0f (diff) | |
download | yosys-1ae360cf725db65c54c69042bcef66f1728b4df6.tar.gz yosys-1ae360cf725db65c54c69042bcef66f1728b4df6.tar.bz2 yosys-1ae360cf725db65c54c69042bcef66f1728b4df6.zip |
AigMaker refactoring
Diffstat (limited to 'backends')
-rw-r--r-- | backends/json/json.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/json/json.cc b/backends/json/json.cc index 42bec2776..52b97ef0b 100644 --- a/backends/json/json.cc +++ b/backends/json/json.cc @@ -225,7 +225,7 @@ struct JsonWriter f << stringf("\"%sport\", \"%s\", %d", node.inverter ? "n" : "", log_id(node.portname), node.portbit); else if (node.left_parent < 0 && node.right_parent < 0) - f << stringf("\"%s\"", node.inverter ? "false" : "true"); + f << stringf("\"%s\"", node.inverter ? "true" : "false"); else f << stringf("\"%s\", %d, %d", node.inverter ? "nand" : "and", node.left_parent, node.right_parent); for (auto &op : node.outports) |