forked from abs-tudelft/fletcher
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (22 loc) · 626 Bytes
/
Copy pathMakefile
File metadata and controls
28 lines (22 loc) · 626 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.PHONY: clean sim
all:
python3 generate-input.py
fletchgen -r in.rb -i out.as -s memory.srec -l vhdl dot --sim --regs c:8:add:0x01 s:32:sum
sim:
rm -f vhdl/Kernel.gen.vhd
vhdeps -i ${FLETCHER_DIR}/hardware -i . ghdl SimTop_tc
gui:
rm -f vhdl/Kernel.gen.vhd
vhdeps -i ${FLETCHER_DIR}/hardware -i . --gui ghdl SimTop_tc
vsim:
rm -f vhdl/Kernel.gen.vhd
vhdeps -i ${FLETCHER_DIR}/hardware -i . vsim SimTop_tc
vsim-gui:
rm -f vhdl/Kernel.gen.vhd
vhdeps -i ${FLETCHER_DIR}/hardware -i . --gui vsim SimTop_tc
clean:
rm -rf vhdmmio-doc
rm -rf dot
rm -f fletchgen.mmio.yaml
rm -f memory.srec
rm -f vhdl/*.gen.vhd