*** empty log message ***
authorhachti <hachti>
Thu, 14 Dec 2006 06:02:44 +0000 (06:02 +0000)
committerhachti <hachti>
Thu, 14 Dec 2006 06:02:44 +0000 (06:02 +0000)
Makefile
bin/bmaker [new file with mode: 0755]
bin/ldc [new file with mode: 0755]
bin/paroff [new file with mode: 0755]
bin/paron [new file with mode: 0755]
bin/tab [new file with mode: 0755]
slst/ldr-apm_8k.slst [new file with mode: 0644]
systems/build_super_simple.sh [new file with mode: 0755]

index d723946c558fa93000868e5211f2c84ccd07681f..29336ae726e695e733460041961112b87761abc5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -28,12 +28,13 @@ SUBDIRS+=programs/mandelbrot\
 
 # If you want to build the docs, too: Uncomment next line:
 #SUBDIRS+=docs/manual
-cvsclean: clean
-       touch slst/* sys/*
 
 default: 
        @$(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir)&&) /bin/true
 
+cvsclean: clean
+       touch slst/* sys/*
+
 %:
        @echo $@
        $(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir) $@;)
diff --git a/bin/bmaker b/bin/bmaker
new file mode 100755 (executable)
index 0000000..a6e85f4
Binary files /dev/null and b/bin/bmaker differ
diff --git a/bin/ldc b/bin/ldc
new file mode 100755 (executable)
index 0000000..fe93383
Binary files /dev/null and b/bin/ldc differ
diff --git a/bin/paroff b/bin/paroff
new file mode 100755 (executable)
index 0000000..2f2c1e8
Binary files /dev/null and b/bin/paroff differ
diff --git a/bin/paron b/bin/paron
new file mode 100755 (executable)
index 0000000..5a3ff2d
Binary files /dev/null and b/bin/paron differ
diff --git a/bin/tab b/bin/tab
new file mode 100755 (executable)
index 0000000..aaa1345
Binary files /dev/null and b/bin/tab differ
diff --git a/slst/ldr-apm_8k.slst b/slst/ldr-apm_8k.slst
new file mode 100644 (file)
index 0000000..9a6f72f
Binary files /dev/null and b/slst/ldr-apm_8k.slst differ
diff --git a/systems/build_super_simple.sh b/systems/build_super_simple.sh
new file mode 100755 (executable)
index 0000000..c0a1494
--- /dev/null
@@ -0,0 +1,49 @@
+#!/bin/sh
+
+DO_FILE=s2.do
+
+if [ ! "$MAKE" ]; then
+    echo "Not run from within a Makefile!"
+    exit 4
+fi
+
+cat > $DO_FILE <<EOF
+echo Booting $LDR_APM_8K
+at ptr $LDR_APM_8K
+boot ptr
+echo Loading $LDR_APM
+; enter high loader address for loading above itself
+d 15000 37777
+
+echo *** Loading $LDR_APM
+at ptr $LDR_APM
+d a 33000
+d p 16000
+go
+go
+at ptr $LDR_DUMY
+go
+
+echo *** Loading $PAL_AP
+at ptr $PAL_AP
+d a 37000
+d p 16003
+go
+go
+
+; Clear memory
+d 100-27777 0
+
+; Common block settings:
+d 35000 31000
+
+; Settings for immediate load after sys restore
+r
+d p 36000
+
+save $SUPER_SIMPLE_SYS
+echo Complete.
+q
+EOF
+h316 $DO_FILE
+rm -f $DO_FILE