summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-11-18 20:17:38 -0600
committerAlejandro Soto <alejandro@34project.org>2023-11-18 20:17:41 -0600
commit223dbc0619adde456cf5dde7c2c5235c33301b15 (patch)
treeac7e0ddd81aaf2b973b9f9f25c2f1718da296d30 /Makefile
parentbc56985a67d2cec759cbad8a0de2c6f54b6818cd (diff)
rtl/gfx: fix Verilator loop unrolling bug in gfx_pipes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01e4c15..f8574ec 100644
--- a/Makefile
+++ b/Makefile
@@ -203,5 +203,6 @@ $(OBJ_DIR)/%.mk: \
--Mdir $(dir $@) --top $(word 1,$(subst /, ,$*)) -FI $(ROOT)/$(TB_DIR)/verilator.hpp \
$(filter %.sv %.cpp,$(patsubst tb/%,../tb/%,$^)) \
$(if $(filter $(TOP),$(word 1,$(subst /, ,$*))),, \
- --vpi --public-flat-rw -LDFLAGS "$(COCOTB_LDFLAGS) $(LIBPYTHON)" \
+ --vpi --public-flat-rw --unroll-count 128 \
+ -LDFLAGS "$(COCOTB_LDFLAGS) $(LIBPYTHON)" \
$(shell $(COCOTB_CONFIG) --share)/lib/verilator/verilator.cpp)