RF delay simulator using ADALM-PLUTO
https://osmocom.org/projects/osmo-rfds
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
315 B
23 lines
315 B
#
|
|
# Simulation Makefile
|
|
#
|
|
|
|
XILINX_LIBS=\
|
|
xilinx/glbl.v \
|
|
xilinx/DSP48E1.v \
|
|
xilinx/RAMB36E1.v
|
|
|
|
OBJS=\
|
|
sig_combine.v \
|
|
sig_delay.v
|
|
|
|
TESTBENCHES=\
|
|
sig_chain_tb
|
|
|
|
all: $(TESTBENCHES)
|
|
|
|
%_tb: %_tb.v $(XILINX_LIBS) $(OBJS)
|
|
iverilog -Wall -DSIM=1 -o $@ $(XILINX_LIBS) $(OBJS) $<
|
|
|
|
clean:
|
|
rm -f $(TESTBENCHES) *.vcd
|
|
|