groovylight/Makefile
saji 9a4dfea4f0 wip: basic pixel generator + coordinator module
coordinator is a high level hub75 controller.
It drives multiple panels by generating the x/y coordinates that would
be displayed on each, then converting those into the BRAM format to be
written quickly.
2024-04-30 23:48:10 -05:00

12 lines
209 B
Makefile

.PHONY all clean test
VERILOG_SOURCES := $(join $(wildcard verilog/*.v), $(wildcard verilog/*.sv))
TESTBENCH_SOURCES := $(wildcard verilog/tb/*.sv)
ICARUS_ARGS := "-g2012"
%.vcd: %.vvp
vvp $^
%.vvp: %.sv