aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 9fc482d433c0166a9fa9bb18ddfb8cd02e077b16 (plain) (blame)
1
2
3
4
5
6
7
8
9
VERILATOR_FLAGS = --cc --exe -x-assign fast -Wall -DBOOTH_SIM \
                  -GA1_LEN=16 -GA2_LEN=16 -GA2LEN_SIZ=5
VERILATOR_INPUT = boothmul.v sim.cpp

obj_dir/Vboothmul: obj_dir/Vboothmul.mk obj_dir/Vboothmul.cpp \
                   obj_dir/Vboothmul.h sim.cpp
	cd obj_dir && make -f Vboothmul.mk
obj_dir/Vboothmul.mk: $(VERILATOR_INPUT)
	verilator $(VERILATOR_FLAGS) $(VERILATOR_INPUT)