-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaims.sh
executable file
·107 lines (94 loc) · 2.95 KB
/
aims.sh
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/sh
USAGE="Usage: ./aims [OPTIONS]...
Options:
-h show this help
-A analyze src files
-M ENTITY analyze, make executable for ENTITY
-S ENTITY analyze, make, simulate ENTITY and generate wave
-C clean up build files and executable
-f [SRC FILES] paths to src files
-u SRC_LIST unit, name of file with list of src files in
build/srclists directory
-z Z80 ASM FILE compile and run z80 asm file
-a abort simulation on assertion error
-t TIME simulation time
-w FILENAME name of generated wave file -- default: wave.ghw
Examples:
simulate alu_tb when all alu src files listed in build/srclists/alu
./aims -u alu -S alu_tb
analyze all alu src files
./aims -u alu -A
analyze all files in src/z80
./aims -f \"src/z80/*.vhd\" -A
"
# actions
quit=false # quit immediately
analyze=false # analyze src files
make=false # make executable
sim=false # run simulation
emulate=false
clean=false # remove executable
asm=false; # assemble z80 obj
src=$(find . -name '*.vhd')
asm_src=""
entity=""
args="--ieee-asserts=disable"
wave="wave.ghw"
args_ghdl="--workdir=build --ieee=synopsys"
while getopts hAM:S:ECf:u:z:at:w: OPT; do
case $OPT in
h) quit=true ;;
A) analyze=true ;;
M) analyze=true; make=true; entity=$OPTARG ;;
S) analyze=true; make=true; sim=true entity=$OPTARG ;;
E) emulate=true ;;
C) clean=true ;;
f) src=$OPTARG ;;
u)
src=$(cat build/srclists/$OPTARG);
if [ -z "$src" ]; then
echo "unit '$OPTARG' not found in build/srclists/"
exit 1
fi ;;
z) asm=true; asm_src=$OPTARG ;;
a) args="$args --assert-level=error" ;;
t) args="$args --stop-time=$OPTARG" ;;
w) wave=$OPTARG ;;
[?]) quit=true ;;
esac
done
if [ "$quit" = true ]; then
echo "$USAGE"
exit 1
fi
if [ "$asm" = true ]; then
z80asm $asm_src -o a.z --list
if [ $? != '0' ]; then
exit 1
fi
# 76 = 4c = size of ti asm/basic header
if [ "$emulate" = true ]; then
mv a.z a.bin
else
head -c 76 </dev/zero | cat - a.z > a.bin
rm a.z
fi
fi
if [ "$analyze" = true ]; then
ghdl -a $args_ghdl $src # analyze designs
if [ "$make" = true -a $? = '0' ]; then
ghdl -i $args_ghdl $src # import designs
ghdl -m $args_ghdl $entity # make executable
if [ "$sim" = true -a $? = '0' ]; then
./$entity $args --wave=$wave
fi
fi
fi
if [ "$emulate" = true ]; then
z80e-sdl a.bin --no-rom-check --print-state --debug
fi
if [ "$clean" = true ]; then
rm -f $entity
ghdl --clean --workdir=build
fi
rm -f build/*.o build/*.cf