*** empty log message ***
authorhachti <hachti>
Sun, 2 Apr 2006 22:07:50 +0000 (22:07 +0000)
committerhachti <hachti>
Sun, 2 Apr 2006 22:07:50 +0000 (22:07 +0000)
Makefile
bin/asm
bin/frtn

index d1e33c0c0422272ff2fd733b3784d2cf7a53607f..09d81ca4ac854cf3e87361083694600502b3bc38 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
 # Toplevel Makefile for Hachti's H316 stuff collection
 
-SUBDIRS=pc-tools/ldc pc-tools/src-filters pc-tools/boot-maker lib/iolib lib/fortran docs/manual\
+SUBDIRS=pc-tools/ldc pc-tools/src-filters pc-tools/boot-maker lib/iolib lib/fortran \
         lib/fortran lib/fortran/vpunch-help lib/iolib programs/mandelbrot\
-        programs/punchomat
+        programs/punchomat docs/manual
 
 
 default: 
diff --git a/bin/asm b/bin/asm
index 883225d8930618cd5604f50ac2c3ed84c8ded430..b7321f5f095e60667ad8af0de9f906d51f3dedc8 100755 (executable)
--- a/bin/asm
+++ b/bin/asm
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
 # Assembler wrapper for simh h316
 
 if [ ! $1 ] ; then
-    echo "Argument fehlt!"
+    echo "Argument mising!"
     exit 2
 fi
 
@@ -10,20 +10,24 @@ name=`basename $1 .asm`
 listfile=$name.lst
 
 cat $1 | tab | paron > $name.par
+
 rm  -f $name.lst
 rm  -f $name.obj
 
-echo "rest  $H316/sys/dap.sys" > $name.go
-echo "d a 120420" >> $name.go
-echo "at ptr $name.par" >> $name.go
-echo "at ptp $name.obj" >> $name.go
-echo "at tty3 $listfile" >> $name.go
-echo "set tty3 uascii" >> $name.go
-echo "set tty3 start" >> $name.go
-echo "go" >> $name.go
-echo "d ptr pos 0" >> $name.go
-echo "go" >> $name.go
-echo "quit" >> $name.go
+cat > $name.go <<EOF
+rest  $H316/sys/dap.sys
+d a 120420 
+at ptr $name.par 
+at ptp $name.obj 
+at tty3 $listfile 
+set tty3 uascii 
+set tty3 start 
+go 
+d ptr pos 0 
+go 
+quit 
+EOF
+
 h316 $name.go > /dev/null
 
 rm -f $name.par
index a7a8fa65e55c03af4d1d2769bcabda486323fa97..cf401857456b1c1ed8c553a4164293649befc53b 100755 (executable)
--- a/bin/frtn
+++ b/bin/frtn
@@ -2,7 +2,7 @@
 # FORTRAN IV compiler wrapper for simh h316
 
 if [ ! $1 ] ; then
-    echo "Argument mssing!"
+    echo "Argument missing!"
     exit 2
 fi