X-Git-Url: http://gitweb.hachti.de/?a=blobdiff_plain;f=bin%2Fasm_original;h=bc3f9595bcef1045c5ce5c55806bed089eeb1cbb;hb=d6a1a234777d52614885de62fd64d1f3119d238b;hp=f6becc4323a07e94179741f7eecf18902f47083a;hpb=8eb8811723f247b223acf77c00171318fb1db645;p=h316.git diff --git a/bin/asm_original b/bin/asm_original index f6becc4..bc3f959 100755 --- a/bin/asm_original +++ b/bin/asm_original @@ -2,11 +2,11 @@ # Assembler wrapper for simh h316 if [ ! $1 ] ; then - echo "Argument missing!" + echo "Assembler (Original): Input file missing!" exit 2 fi -echo -e "\nAssembler: Translating \"$1\" (Original DAP-16 8K SLST):" +echo -en "Assembler (Original): Translating \"$1\":" for n in $*; do if [ $n == "/v" ]; then @@ -52,11 +52,11 @@ if cat $name.lst | grep "NO ERRORS IN ABOVE ASSEMBLY">/dev/null 2>&1; then rm -f $name.par rm -f $name.go fi - echo "Assembler: Success." + echo " Success." exit 0 fi cat $name.lst -echo -e "Assembler: Failed." +echo -e " Failed." rm -f $name.obj exit 77