3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-03 18:00:24 +00:00

Initial version of opt_demorgan is functioning for AND/OR gates. Not the prettiest results for bus inputs, but this can be improved

This commit is contained in:
Andrew Zonenberg 2017-09-11 17:18:26 -07:00
parent f9d023c53f
commit 6da5d36968
2 changed files with 203 additions and 0 deletions

View file

@ -6,6 +6,7 @@ OBJS += passes/opt/opt_reduce.o
OBJS += passes/opt/opt_rmdff.o
OBJS += passes/opt/opt_clean.o
OBJS += passes/opt/opt_expr.o
OBJS += passes/opt/opt_demorgan.o
OBJS += passes/opt/rmports.o
ifneq ($(SMALL),1)