*** empty log message ***
[h316.git] / systems / build-dap16.sh
CommitLineData
eaf068b0 1#!/bin/sh
2
3DO_FILE=dap.do
4
5if [ ! "$MAKE" ]; then
6 echo "Not run from within a Makefile!"
7 exit 4
8fi
9
10cat > $DO_FILE <<EOF
11rest $SUPER_SYS_FOR_DAP
12at ptr $DAP16
13run 36000
14go
15at ptr $IOS16
16go
17at ptr $DAP_LIBRARY
18go
19echo now loaded before dumy:
20run 36002
21echo now satisfying....
22at ptr $DUMYX16
23;IMPORTANT! THERE ARENT NO MORE UNSATISFIED IN THE FIRST
24;EXPORT BLOCK. SECOND BLOCK SEEMS NOT TO TRIGGER DUMMY!
25d p 36004
26go
27go
28
29at ptr $DECCL
30go
31at ptr $SETSIZ
32go
33go
34
35
36r
37at ptp $DAP_SLST
38run 37000
39d a 100
40go
41d a 17777
42go
43
44d p 1000
45d a 120420
46save $DAP_SYS
47
48run 36002
49q
50EOF
51
52h316 $DO_FILE
53rm $DO_FILE
54
55