aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-10-07 13:09:13 -0700
committerEddie Hung <eddie@fpgeh.com>2019-10-07 13:09:13 -0700
commit90a954bb9c856cc6934cb0db6e37e5f80ade5b9a (patch)
tree80cc708f302c7bc0df520cc1e115e387ab39a519
parentbae3d8705d844912699b0ed502630040ce4efa85 (diff)
downloadyosys-90a954bb9c856cc6934cb0db6e37e5f80ade5b9a.tar.gz
yosys-90a954bb9c856cc6934cb0db6e37e5f80ade5b9a.tar.bz2
yosys-90a954bb9c856cc6934cb0db6e37e5f80ade5b9a.zip
Get rid of latch_* in write_xaiger
-rw-r--r--backends/aiger/xaiger.cc8
1 files changed, 1 insertions, 7 deletions
diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc
index b1b7af513..4f6491311 100644
--- a/backends/aiger/xaiger.cc
+++ b/backends/aiger/xaiger.cc
@@ -93,7 +93,6 @@ struct XAigerWriter
dict<SigBit, int> aig_map;
dict<SigBit, int> ordered_outputs;
- dict<SigBit, int> ordered_latches;
vector<Cell*> box_list;
bool omode = false;
@@ -950,7 +949,6 @@ struct XAigerWriter
dict<int, string> input_lines;
dict<int, string> init_lines;
dict<int, string> output_lines;
- dict<int, string> latch_lines;
dict<int, string> wire_lines;
for (auto wire : module->wires())
@@ -1011,10 +1009,6 @@ struct XAigerWriter
if (omode && output_bits.empty())
f << "output " << output_lines.size() << " 0 $__dummy__\n";
- latch_lines.sort();
- for (auto &it : latch_lines)
- f << it.second;
-
wire_lines.sort();
for (auto &it : wire_lines)
f << it.second;
@@ -1036,7 +1030,7 @@ struct XAigerBackend : public Backend {
log(" write ASCII version of AIGER format\n");
log("\n");
log(" -map <filename>\n");
- log(" write an extra file with port and latch symbols\n");
+ log(" write an extra file with port and box symbols\n");
log("\n");
log(" -vmap <filename>\n");
log(" like -map, but more verbose\n");