mirror of
https://github.com/supleed2/cordic.git
synced 2024-12-22 21:55:50 +00:00
10 lines
302 B
Makefile
10 lines
302 B
Makefile
|
SIM ?= verilator
|
||
|
TOPLEVEL_LANG ?= verilog
|
||
|
VERILOG_SOURCES += $(PWD)/saw2sin.sv $(PWD)/cordic.sv
|
||
|
TOPLEVEL = saw2sin
|
||
|
MODULE = test_saw2sin
|
||
|
EXTRA_ARGS += --trace-fst --trace-structs
|
||
|
|
||
|
# include cocotb's make rules to take care of the simulator setup
|
||
|
include $(shell cocotb-config --makefiles)/Makefile.sim
|