2014-01-02 12:01:07 +00:00
|
|
|
C99?=c99
|
2014-01-18 10:59:36 +00:00
|
|
|
PROJECT_ROOT=/home2/vlsi13/joth13/ICPRO/ice/heron/units/heron
|
|
|
|
TB_ROOT=$(PROJECT_ROOT)/df2/heron_top_tb_run1
|
2013-12-04 20:32:13 +00:00
|
|
|
|
2014-01-02 12:01:07 +00:00
|
|
|
all: bericht check fsm_tb
|
2013-12-04 20:32:13 +00:00
|
|
|
|
2014-01-13 08:08:21 +00:00
|
|
|
bericht:
|
|
|
|
cd bericht && make
|
|
|
|
|
2013-12-11 12:57:26 +00:00
|
|
|
check: sqrt
|
2013-12-04 20:32:13 +00:00
|
|
|
./sqrt
|
|
|
|
|
2014-01-02 12:01:07 +00:00
|
|
|
sqrt: c/sqrt.c
|
|
|
|
$(C99) -lm -o sqrt c/sqrt.c
|
2013-12-11 12:57:26 +00:00
|
|
|
|
2014-01-08 15:35:30 +00:00
|
|
|
fsm: verilog/heron_fsm.vcd
|
|
|
|
gtkwave verilog/heron_fsm.vcd
|
|
|
|
|
|
|
|
ctrl: verilog/heron_ctrl.vcd
|
|
|
|
gtkwave verilog/heron_ctrl.vcd
|
2014-01-02 12:01:07 +00:00
|
|
|
|
|
|
|
fsm_tb: verilog/heron_fsm.vcd
|
2014-01-08 15:35:30 +00:00
|
|
|
ctrl_tb: verilog/heron_ctrl.vcd
|
2014-01-02 12:01:07 +00:00
|
|
|
|
|
|
|
%.vcd : %.vvp
|
|
|
|
vvp $<
|
|
|
|
|
|
|
|
%.vvp: %_tb.v %.v
|
2014-01-08 15:35:30 +00:00
|
|
|
iverilog -o $@ -Iverilog verilog/heron_{fsm,ctrl}.v
|
2014-01-13 08:08:21 +00:00
|
|
|
|
2014-01-18 10:59:36 +00:00
|
|
|
VERILOG_FILES=${shell find . -name verilog.v -type f}
|
|
|
|
|
2014-01-13 08:08:21 +00:00
|
|
|
sync:
|
2015-01-14 09:41:44 +00:00
|
|
|
cd cadence; rsync --relative --verbose -e ssh $(VERILOG_FILES:./cadence/%=%) eeets2:/home2/vlsi13/joth13/ICPRO/ice/heron/units/heron/cdslib/heron/
|
2014-01-18 10:59:36 +00:00
|
|
|
|
|
|
|
testbench:
|
|
|
|
ssh eeets2 $(PROJECT_ROOT)/df2/run-testbench.sh
|
2015-01-14 09:41:44 +00:00
|
|
|
rsync -av --inplace -avHz -e ssh eeets2:$(TB_ROOT)/heron_top_tb.vcd .
|
2014-01-18 10:59:36 +00:00
|
|
|
gtkwave heron_top_tb.gtkw
|