Fix building tests
The wrong module to dump signals was included; fix it.
Fixes: 3ec1f4d
("Automatically dump signals")
Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
parent
38892fa3d7
commit
20dca056ad
2
Makefile
2
Makefile
|
@ -36,7 +36,7 @@ IFLAGS := -g2012 -gspecify -Wall -Wno-timescale
|
|||
EXTRA_V := rtl/iverilog_dump.v
|
||||
|
||||
define run-icarus =
|
||||
$(ICARUS) $(IFLAGS) -I$(<D) -y$(<D) -M$@.pre -DTOP=$(TOP) -s $(TOP) -s dump -o $@ $< $(EXTRA_V) && \
|
||||
$(ICARUS) $(IFLAGS) -I$(<D) -y$(<D) -M$@.pre -DTOP=$(TOP) -s $(TOP) -s iverilog_dump -o $@ $< $(EXTRA_V) && \
|
||||
( echo -n "$@: " && tr '\n' ' ' ) < $@.pre > $@.d; RET=$$?; rm -f $@.pre; exit $$RET
|
||||
endef
|
||||
|
||||
|
|
Loading…
Reference in New Issue