diff --git a/Microsoft BASIC Compiler v5.36/e.bas b/Microsoft BASIC Compiler v5.36/E.BAS similarity index 100% rename from Microsoft BASIC Compiler v5.36/e.bas rename to Microsoft BASIC Compiler v5.36/E.BAS diff --git a/Microsoft BASIC Compiler v5.36/mm.bas b/Microsoft BASIC Compiler v5.36/MM.BAS similarity index 100% rename from Microsoft BASIC Compiler v5.36/mm.bas rename to Microsoft BASIC Compiler v5.36/MM.BAS diff --git a/Microsoft BASIC Compiler v5.36/sieve.bas b/Microsoft BASIC Compiler v5.36/SIEVE.BAS similarity index 100% rename from Microsoft BASIC Compiler v5.36/sieve.bas rename to Microsoft BASIC Compiler v5.36/SIEVE.BAS diff --git a/Microsoft BASIC Compiler v5.36/ttt.bas b/Microsoft BASIC Compiler v5.36/TTT.BAS similarity index 100% rename from Microsoft BASIC Compiler v5.36/ttt.bas rename to Microsoft BASIC Compiler v5.36/TTT.BAS diff --git a/Microsoft BASIC Compiler v5.36/m.sh b/Microsoft BASIC Compiler v5.36/m.sh new file mode 100644 index 0000000..e881410 --- /dev/null +++ b/Microsoft BASIC Compiler v5.36/m.sh @@ -0,0 +1,13 @@ +str=$(tr '[a-z]' '[A-Z]' <<< $1) + +rm $str.MAP 2>/dev/null +rm $str.OBJ 2>/dev/null +rm $str.LST 2>/dev/null +rm $str.EXE 2>/dev/null + +ntvdm -u -r:. -c bascom $str.bas,,$str.lst, +ntvdm -u -r:. -c link $str,,$str,.\\,nul + +rm $str.MAP 2>/dev/null +rm $str.OBJ 2>/dev/null +rm $str.LST 2>/dev/null