global: Corrected absolute paths in bin/ symbolic links
[h316.git] / systems / build_super_simple.sh
CommitLineData
99ab1007 1#!/bin/sh
2
3DO_FILE=s2.do
4
5if [ ! "$MAKE" ]; then
6 echo "Not run from within a Makefile!"
7 exit 4
8fi
9
10cat > $DO_FILE <<EOF
11echo Booting $LDR_APM_8K
12at ptr $LDR_APM_8K
13boot ptr
14echo Loading $LDR_APM
15; enter high loader address for loading above itself
16d 15000 37777
17
18echo *** Loading $LDR_APM
19at ptr $LDR_APM
20d a 33000
21d p 16000
22go
23go
24at ptr $LDR_DUMY
25go
26
27echo *** Loading $PAL_AP
28at ptr $PAL_AP
29d a 37000
30d p 16003
31go
32go
33
34; Clear memory
35d 100-27777 0
36
37; Common block settings:
38d 35000 31000
39
40; Settings for immediate load after sys restore
41r
42d p 36000
43
44save $SUPER_SIMPLE_SYS
45echo Complete.
46q
47EOF
48h316 $DO_FILE
49rm -f $DO_FILE