aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds/stat.cc
diff options
context:
space:
mode:
authorclairexen <claire@symbioticeda.com>2020-06-23 20:25:52 +0200
committerGitHub <noreply@github.com>2020-06-23 20:25:52 +0200
commit2a59cd9ed0c6d4ddf19fc735682fa236018bcf2c (patch)
treefc1d103152be86dbb4fc83b5566b17e9b1490445 /passes/cmds/stat.cc
parent8c4cb1885b2cb6b7b26d7b9b7113e174c0eefffd (diff)
parent88e7f90663f440b24d97a65804ee23b1d82dbed7 (diff)
downloadyosys-2a59cd9ed0c6d4ddf19fc735682fa236018bcf2c.tar.gz
yosys-2a59cd9ed0c6d4ddf19fc735682fa236018bcf2c.tar.bz2
yosys-2a59cd9ed0c6d4ddf19fc735682fa236018bcf2c.zip
Merge pull request #1818 from YosysHQ/mwk/new-ff-types
Add new FF types to library.
Diffstat (limited to 'passes/cmds/stat.cc')
-rw-r--r--passes/cmds/stat.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/passes/cmds/stat.cc b/passes/cmds/stat.cc
index 6f2c2243e..ed51fdc24 100644
--- a/passes/cmds/stat.cc
+++ b/passes/cmds/stat.cc
@@ -117,7 +117,10 @@ struct statdata_t
}
else if (cell_type.in(ID($mux), ID($pmux)))
cell_type = stringf("%s_%d", cell_type.c_str(), GetSize(cell->getPort(ID::Y)));
- else if (cell_type.in(ID($sr), ID($dff), ID($dffsr), ID($adff), ID($dlatch), ID($dlatchsr)))
+ else if (cell_type.in(
+ ID($sr), ID($ff), ID($dff), ID($dffe), ID($dffsr), ID($dffsre),
+ ID($adff), ID($adffe), ID($sdff), ID($sdffe), ID($sdffce),
+ ID($dlatch), ID($adlatch), ID($dlatchsr)))
cell_type = stringf("%s_%d", cell_type.c_str(), GetSize(cell->getPort(ID::Q)));
}