You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
795 B
Makefile
36 lines
795 B
Makefile
# a2o tb-node
|
|
|
|
SIM_BUILD ?= build_node
|
|
SIM ?= icarus
|
|
|
|
# icarus
|
|
VERILOG_ROOT = ../../verilog
|
|
|
|
# a2node_verilator has some test, etc. inputs tied in rtl
|
|
# also has l/s credits set to 1 in defines
|
|
COMPILE_ARGS = -I$(VERILOG_ROOT)/a2node_verilator -I$(VERILOG_ROOT)/trilib -I$(VERILOG_ROOT)/work -y$(VERILOG_ROOT)/unisims -y$(VERILOG_ROOT)/trilib_clk1x -y$(VERILOG_ROOT)/trilib -y$(VERILOG_ROOT)/work -y$(VERILOG_ROOT)/a2node_verilator
|
|
|
|
# other options
|
|
|
|
# rtl
|
|
TOPLEVEL_LANG = verilog
|
|
# top-level to enable trace, etc.
|
|
VERILOG_SOURCES = ./cocotb_icarus_node.v
|
|
TOPLEVEL = cocotb_icarus_node
|
|
|
|
# python test
|
|
MODULE = tb_node
|
|
|
|
# cocotb make rules
|
|
include $(shell cocotb-config --makefiles)/Makefile.sim
|
|
|
|
build: clean sim fst
|
|
|
|
run: sim fst
|
|
|
|
vcd: sim
|
|
|
|
fst:
|
|
vcd2fst a2onode.vcd a2onode.fst
|
|
rm a2onode.vcd
|