3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-26 04:56:05 +00:00

SMALL mode with first pass of opt_balance_tree

This commit is contained in:
Akash Levy 2024-08-26 22:36:47 -07:00
parent 4e03e8d877
commit 243d8317a5
3 changed files with 283 additions and 3 deletions

View file

@ -87,7 +87,7 @@ EXTRA_TARGETS =
TARGETS = $(PROGRAM_PREFIX)yosys$(EXE) $(PROGRAM_PREFIX)yosys-config
PRETTY = 1
SMALL = 0
SMALL = 1
# Unit test
UNITESTPATH := tests/unit
@ -710,6 +710,8 @@ OBJS += passes/cmds/cover.o
OBJS += passes/cmds/design.o
OBJS += passes/cmds/plugin.o
OBJS += passes/cmds/splitfanout.o
include $(YOSYS_SRC)/passes/proc/Makefile.inc
include $(YOSYS_SRC)/passes/opt/Makefile.inc
include $(YOSYS_SRC)/passes/techmap/Makefile.inc