├── ALIASES ├── CDON.BAT ├── DP_PREFS ├── ENV.BAT ├── FOO ├── GENERIC.BAT ├── I4MGENG.NRK ├── I4MGKAN.NRK ├── M1MGENG.NRK ├── M1MGKAN.NRK ├── MAIN.NRK ├── MSC6.BAT ├── MSC6.NRK ├── MSC7.BAT ├── SCUMMENV.BAT ├── SDK.BAT ├── SETENV.BAT └── WATCOM.BAT ├── README.md └── UTIL ├── 2B.BAT ├── CAMERA.COM ├── DEVLOAD.COM ├── DEVLOD.COM ├── DIFF.EXE ├── DK.EXE ├── DOSVER.EXE ├── DP.EXE ├── DRVOFF.EXE ├── DRVSET.EXE ├── EDP.EXE ├── FF.EXE ├── HD.EXE ├── HD2F.EXE ├── INTRLIST.EXE ├── LOCATE.EXE ├── LZEXE.EXE ├── MAKE.EXE ├── MOVE.BAT ├── NETON.BAT ├── NPRINT.EXE ├── PKUNZIP.EXE ├── PKZIP.EXE ├── PROMODE.COM ├── PROTOE.EXE ├── PSH1A.OVL ├── PSH2A.OVL ├── REALIAS.BAT ├── RENDIR.COM ├── SMODE.EXE ├── SWEEP.COM ├── TOUCH.EXE ├── VGA1024.EXE ├── X.BAT └── X32FIX.EXE /ALIASES/CDON.BAT: -------------------------------------------------------------------------------- 1 | 2 |  -------------------------------------------------------------------------------- /ALIASES/DP_PREFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/DP_PREFS -------------------------------------------------------------------------------- /ALIASES/ENV.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/ENV.BAT -------------------------------------------------------------------------------- /ALIASES/FOO: -------------------------------------------------------------------------------- 1 | 2 |  -------------------------------------------------------------------------------- /ALIASES/GENERIC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/GENERIC.BAT -------------------------------------------------------------------------------- /ALIASES/I4MGENG.NRK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/I4MGENG.NRK -------------------------------------------------------------------------------- /ALIASES/I4MGKAN.NRK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/I4MGKAN.NRK -------------------------------------------------------------------------------- /ALIASES/M1MGENG.NRK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/M1MGENG.NRK -------------------------------------------------------------------------------- /ALIASES/M1MGKAN.NRK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/M1MGKAN.NRK -------------------------------------------------------------------------------- /ALIASES/MAIN.NRK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/MAIN.NRK -------------------------------------------------------------------------------- /ALIASES/MSC6.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/MSC6.BAT -------------------------------------------------------------------------------- /ALIASES/MSC6.NRK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/MSC6.NRK -------------------------------------------------------------------------------- /ALIASES/MSC7.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/MSC7.BAT -------------------------------------------------------------------------------- /ALIASES/SCUMMENV.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/SCUMMENV.BAT -------------------------------------------------------------------------------- /ALIASES/SDK.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/SDK.BAT -------------------------------------------------------------------------------- /ALIASES/SETENV.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/SETENV.BAT -------------------------------------------------------------------------------- /ALIASES/WATCOM.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/ALIASES/WATCOM.BAT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/README.md -------------------------------------------------------------------------------- /UTIL/2B.BAT: -------------------------------------------------------------------------------- 1 | @echo off 2 | xcopy %1 b: 3 |  -------------------------------------------------------------------------------- /UTIL/CAMERA.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/CAMERA.COM -------------------------------------------------------------------------------- /UTIL/DEVLOAD.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/DEVLOAD.COM -------------------------------------------------------------------------------- /UTIL/DEVLOD.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/DEVLOD.COM -------------------------------------------------------------------------------- /UTIL/DIFF.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/DIFF.EXE -------------------------------------------------------------------------------- /UTIL/DK.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/DK.EXE -------------------------------------------------------------------------------- /UTIL/DOSVER.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/DOSVER.EXE -------------------------------------------------------------------------------- /UTIL/DP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/DP.EXE -------------------------------------------------------------------------------- /UTIL/DRVOFF.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/DRVOFF.EXE -------------------------------------------------------------------------------- /UTIL/DRVSET.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/DRVSET.EXE -------------------------------------------------------------------------------- /UTIL/EDP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/EDP.EXE -------------------------------------------------------------------------------- /UTIL/FF.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/FF.EXE -------------------------------------------------------------------------------- /UTIL/HD.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/HD.EXE -------------------------------------------------------------------------------- /UTIL/HD2F.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/HD2F.EXE -------------------------------------------------------------------------------- /UTIL/INTRLIST.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/INTRLIST.EXE -------------------------------------------------------------------------------- /UTIL/LOCATE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/LOCATE.EXE -------------------------------------------------------------------------------- /UTIL/LZEXE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/LZEXE.EXE -------------------------------------------------------------------------------- /UTIL/MAKE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/MAKE.EXE -------------------------------------------------------------------------------- /UTIL/MOVE.BAT: -------------------------------------------------------------------------------- 1 | @echo off 2 | xcopy %1 %2 3 | del %1 4 | -------------------------------------------------------------------------------- /UTIL/NETON.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/NETON.BAT -------------------------------------------------------------------------------- /UTIL/NPRINT.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/NPRINT.EXE -------------------------------------------------------------------------------- /UTIL/PKUNZIP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/PKUNZIP.EXE -------------------------------------------------------------------------------- /UTIL/PKZIP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/PKZIP.EXE -------------------------------------------------------------------------------- /UTIL/PROMODE.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/PROMODE.COM -------------------------------------------------------------------------------- /UTIL/PROTOE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/PROTOE.EXE -------------------------------------------------------------------------------- /UTIL/PSH1A.OVL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/PSH1A.OVL -------------------------------------------------------------------------------- /UTIL/PSH2A.OVL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/PSH2A.OVL -------------------------------------------------------------------------------- /UTIL/REALIAS.BAT: -------------------------------------------------------------------------------- 1 | load c:\anarkey\aliases\main.nrk 2 | -------------------------------------------------------------------------------- /UTIL/RENDIR.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/RENDIR.COM -------------------------------------------------------------------------------- /UTIL/SMODE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/SMODE.EXE -------------------------------------------------------------------------------- /UTIL/SWEEP.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/SWEEP.COM -------------------------------------------------------------------------------- /UTIL/TOUCH.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/TOUCH.EXE -------------------------------------------------------------------------------- /UTIL/VGA1024.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/VGA1024.EXE -------------------------------------------------------------------------------- /UTIL/X.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/X.BAT -------------------------------------------------------------------------------- /UTIL/X32FIX.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortyseven/RA_1993/HEAD/UTIL/X32FIX.EXE --------------------------------------------------------------------------------