generated from saji/ecp5-template
saji
9a4dfea4f0
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.
12 lines
209 B
Makefile
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
|