3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-30 07:53:16 +00:00

Merge pull request #775 from whitequark/opt_flowmap

flowmap: new techmap pass
This commit is contained in:
Clifford Wolf 2019-01-03 17:03:18 +01:00 committed by GitHub
commit d98fe8ce1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 875 additions and 1 deletions

View file

@ -6,12 +6,12 @@ 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_lut.o
ifneq ($(SMALL),1)
OBJS += passes/opt/share.o
OBJS += passes/opt/wreduce.o
OBJS += passes/opt/opt_demorgan.o
OBJS += passes/opt/rmports.o
OBJS += passes/opt/opt_lut.o
endif