├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── cusp-updates └── fit │ ├── fit.diff │ ├── fit.tsk │ └── fitbld.com ├── decnete ├── nsp1.pat └── nsp1.txt ├── docs ├── AA-5286M-TC-RT-11-V5.7_System_Release_Notes_Oct1998.pdf ├── AV-RK36A-TE-RSTS_E-V10.1A_Cover_Letter_Year_2000_Update_1999.pdf └── SPD-13_01_37-RSTS_E-Version_10.1.pdf ├── layered └── dibol │ └── dibol.txt ├── micros ├── DISASB.COM ├── DISASM.B2S ├── DISASM.TSK ├── INTEL.B2S ├── INTEL.TSK ├── INTELB.COM ├── SCMBLD.COM ├── SCMPCA.B2S ├── SCMPCA.TSK ├── X65.B2S ├── X65.TSK ├── X65BLD.COM ├── X80.B2S ├── X80.HLP ├── X80.TSK └── X80BLD.COM ├── photos └── DECtape-RSTS-E-V06B.jpeg └── software ├── ahl_basic_games.dta ├── rk05-games-rsts0-0.dsk ├── rl01-games-rsts0-0.dsk ├── rl01-games.dsk ├── rl02-ker363.dsk └── rl02-zemu25.dsk /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.*.swp 2 | **/.DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/README.md -------------------------------------------------------------------------------- /cusp-updates/fit/fit.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/cusp-updates/fit/fit.diff -------------------------------------------------------------------------------- /cusp-updates/fit/fit.tsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/cusp-updates/fit/fit.tsk -------------------------------------------------------------------------------- /cusp-updates/fit/fitbld.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/cusp-updates/fit/fitbld.com -------------------------------------------------------------------------------- /decnete/nsp1.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/decnete/nsp1.pat -------------------------------------------------------------------------------- /decnete/nsp1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/decnete/nsp1.txt -------------------------------------------------------------------------------- /docs/AA-5286M-TC-RT-11-V5.7_System_Release_Notes_Oct1998.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/docs/AA-5286M-TC-RT-11-V5.7_System_Release_Notes_Oct1998.pdf -------------------------------------------------------------------------------- /docs/AV-RK36A-TE-RSTS_E-V10.1A_Cover_Letter_Year_2000_Update_1999.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/docs/AV-RK36A-TE-RSTS_E-V10.1A_Cover_Letter_Year_2000_Update_1999.pdf -------------------------------------------------------------------------------- /docs/SPD-13_01_37-RSTS_E-Version_10.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/docs/SPD-13_01_37-RSTS_E-Version_10.1.pdf -------------------------------------------------------------------------------- /layered/dibol/dibol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/layered/dibol/dibol.txt -------------------------------------------------------------------------------- /micros/DISASB.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/DISASB.COM -------------------------------------------------------------------------------- /micros/DISASM.B2S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/DISASM.B2S -------------------------------------------------------------------------------- /micros/DISASM.TSK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/DISASM.TSK -------------------------------------------------------------------------------- /micros/INTEL.B2S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/INTEL.B2S -------------------------------------------------------------------------------- /micros/INTEL.TSK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/INTEL.TSK -------------------------------------------------------------------------------- /micros/INTELB.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/INTELB.COM -------------------------------------------------------------------------------- /micros/SCMBLD.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/SCMBLD.COM -------------------------------------------------------------------------------- /micros/SCMPCA.B2S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/SCMPCA.B2S -------------------------------------------------------------------------------- /micros/SCMPCA.TSK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/SCMPCA.TSK -------------------------------------------------------------------------------- /micros/X65.B2S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/X65.B2S -------------------------------------------------------------------------------- /micros/X65.TSK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/X65.TSK -------------------------------------------------------------------------------- /micros/X65BLD.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/X65BLD.COM -------------------------------------------------------------------------------- /micros/X80.B2S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/X80.B2S -------------------------------------------------------------------------------- /micros/X80.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/X80.HLP -------------------------------------------------------------------------------- /micros/X80.TSK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/X80.TSK -------------------------------------------------------------------------------- /micros/X80BLD.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/micros/X80BLD.COM -------------------------------------------------------------------------------- /photos/DECtape-RSTS-E-V06B.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/photos/DECtape-RSTS-E-V06B.jpeg -------------------------------------------------------------------------------- /software/ahl_basic_games.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/software/ahl_basic_games.dta -------------------------------------------------------------------------------- /software/rk05-games-rsts0-0.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/software/rk05-games-rsts0-0.dsk -------------------------------------------------------------------------------- /software/rl01-games-rsts0-0.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/software/rl01-games-rsts0-0.dsk -------------------------------------------------------------------------------- /software/rl01-games.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/software/rl01-games.dsk -------------------------------------------------------------------------------- /software/rl02-ker363.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/software/rl02-ker363.dsk -------------------------------------------------------------------------------- /software/rl02-zemu25.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn453/RSTS-E/HEAD/software/rl02-zemu25.dsk --------------------------------------------------------------------------------