├── ASM ├── ASM.ASM ├── TEST.APP └── TEST.ASM ├── BASIC ├── BASIC PROGS │ └── Startrek_bas.txt ├── BASIC.ASM └── BASIC1.APP ├── CPM-65 Screen System Disc.JPG ├── Copyright.txt ├── FORTH ├── FKERNEL.COM ├── FORTH DOCs │ ├── 1010_SystemsGuideToFigForth.pdf │ ├── FIG Forth 6502 Implementation.docx │ └── Standalone Application in Fig-Forth.docx ├── FORTH PROGS │ ├── CS.txt │ ├── I2CMENUE.COM │ ├── Menue.txt │ ├── PSTACK.BLK │ ├── SYSINFO.COM │ ├── VED-VT.BLK │ ├── VED.txt │ ├── asm.blk │ ├── cs.blk │ ├── dos24.blk │ ├── dos24.txt │ ├── doscore.blk │ ├── fileopen.txt │ ├── i2c.blk │ ├── i2c.txt │ ├── memtest.blk │ ├── memtest.txt │ ├── menue.blk │ ├── sysinfo.blk │ ├── sysinfo.txt │ └── ved.blk ├── FORTH-E.COM ├── FORTH-VT.COM ├── FORTH16a.ASM ├── FORTHDOS.COM └── FORTHKRN.ASM ├── Images ├── JC_01_SYSTEM.img ├── JC_02_Utilities.img ├── JC_03_BASIC.img ├── JC_04_FORTH.img ├── JC_Disk_blank.img └── diskdefs ├── README.MD ├── SYSPROGS ├── DEBUG.ASM ├── ERASE.ASM ├── FORMAT.ASM ├── RENAME.ASM ├── STEP.ASM ├── SYS.ASM ├── SYSGEN.ASM └── TYPE.ASM ├── System ├── BDOS.ASM ├── BIOS.ASM ├── BOOT.ASM ├── BOOTPROM.ASM └── CCP.ASM ├── UTIL ├── BROWSE.ASM ├── COPY.ASM ├── CPUTYPE.ASM ├── D.ASM ├── D.COM ├── DRUCKER.ASM ├── DUTIL.ASM ├── DateTime.ASM ├── EDIT-VT.ASM ├── EDIT-VT.COM ├── EDIT.ASM ├── EDIT.COM ├── EPROMMER.ASM ├── I2C-util.asm ├── SCSIMGR.ASM ├── SUPERTAP.ASM ├── XM384.asm ├── alloc.asm └── xmodem.asm ├── docs ├── ASM.doc ├── ASM_Speed.xls ├── CPM-65 BDOS.docx ├── CPM-65 System Calls.xlsx ├── CPM-65_System Error codes.xlsx ├── EDIT Commands.xlsx ├── EDIT.doc ├── I2C Junior Computer Implement.docx ├── Junior Computer Memory Map.docx ├── Junior Computer System EEPROM Configuration.docx ├── Junior Softwareliste V1.xls ├── Literature Junior Computer.docx ├── Pics │ └── Junior Computer.jpg └── XMODEM.doc └── gpl-3.0.txt /ASM/ASM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/ASM/ASM.ASM -------------------------------------------------------------------------------- /ASM/TEST.APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/ASM/TEST.APP -------------------------------------------------------------------------------- /ASM/TEST.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/ASM/TEST.ASM -------------------------------------------------------------------------------- /BASIC/BASIC PROGS/Startrek_bas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/BASIC/BASIC PROGS/Startrek_bas.txt -------------------------------------------------------------------------------- /BASIC/BASIC.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/BASIC/BASIC.ASM -------------------------------------------------------------------------------- /BASIC/BASIC1.APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/BASIC/BASIC1.APP -------------------------------------------------------------------------------- /CPM-65 Screen System Disc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/CPM-65 Screen System Disc.JPG -------------------------------------------------------------------------------- /Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/Copyright.txt -------------------------------------------------------------------------------- /FORTH/FKERNEL.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FKERNEL.COM -------------------------------------------------------------------------------- /FORTH/FORTH DOCs/1010_SystemsGuideToFigForth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH DOCs/1010_SystemsGuideToFigForth.pdf -------------------------------------------------------------------------------- /FORTH/FORTH DOCs/FIG Forth 6502 Implementation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH DOCs/FIG Forth 6502 Implementation.docx -------------------------------------------------------------------------------- /FORTH/FORTH DOCs/Standalone Application in Fig-Forth.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH DOCs/Standalone Application in Fig-Forth.docx -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/CS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/CS.txt -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/I2CMENUE.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/I2CMENUE.COM -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/Menue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/Menue.txt -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/PSTACK.BLK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/PSTACK.BLK -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/SYSINFO.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/SYSINFO.COM -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/VED-VT.BLK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/VED-VT.BLK -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/VED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/VED.txt -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/asm.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/asm.blk -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/cs.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/cs.blk -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/dos24.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/dos24.blk -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/dos24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/dos24.txt -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/doscore.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/doscore.blk -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/fileopen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/fileopen.txt -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/i2c.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/i2c.blk -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/i2c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/i2c.txt -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/memtest.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/memtest.blk -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/memtest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/memtest.txt -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/menue.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/menue.blk -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/sysinfo.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/sysinfo.blk -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/sysinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/sysinfo.txt -------------------------------------------------------------------------------- /FORTH/FORTH PROGS/ved.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH PROGS/ved.blk -------------------------------------------------------------------------------- /FORTH/FORTH-E.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH-E.COM -------------------------------------------------------------------------------- /FORTH/FORTH-VT.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH-VT.COM -------------------------------------------------------------------------------- /FORTH/FORTH16a.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTH16a.ASM -------------------------------------------------------------------------------- /FORTH/FORTHDOS.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTHDOS.COM -------------------------------------------------------------------------------- /FORTH/FORTHKRN.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/FORTH/FORTHKRN.ASM -------------------------------------------------------------------------------- /Images/JC_01_SYSTEM.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/Images/JC_01_SYSTEM.img -------------------------------------------------------------------------------- /Images/JC_02_Utilities.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/Images/JC_02_Utilities.img -------------------------------------------------------------------------------- /Images/JC_03_BASIC.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/Images/JC_03_BASIC.img -------------------------------------------------------------------------------- /Images/JC_04_FORTH.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/Images/JC_04_FORTH.img -------------------------------------------------------------------------------- /Images/JC_Disk_blank.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/Images/JC_Disk_blank.img -------------------------------------------------------------------------------- /Images/diskdefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/Images/diskdefs -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/README.MD -------------------------------------------------------------------------------- /SYSPROGS/DEBUG.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/SYSPROGS/DEBUG.ASM -------------------------------------------------------------------------------- /SYSPROGS/ERASE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/SYSPROGS/ERASE.ASM -------------------------------------------------------------------------------- /SYSPROGS/FORMAT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/SYSPROGS/FORMAT.ASM -------------------------------------------------------------------------------- /SYSPROGS/RENAME.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/SYSPROGS/RENAME.ASM -------------------------------------------------------------------------------- /SYSPROGS/STEP.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/SYSPROGS/STEP.ASM -------------------------------------------------------------------------------- /SYSPROGS/SYS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/SYSPROGS/SYS.ASM -------------------------------------------------------------------------------- /SYSPROGS/SYSGEN.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/SYSPROGS/SYSGEN.ASM -------------------------------------------------------------------------------- /SYSPROGS/TYPE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/SYSPROGS/TYPE.ASM -------------------------------------------------------------------------------- /System/BDOS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/System/BDOS.ASM -------------------------------------------------------------------------------- /System/BIOS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/System/BIOS.ASM -------------------------------------------------------------------------------- /System/BOOT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/System/BOOT.ASM -------------------------------------------------------------------------------- /System/BOOTPROM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/System/BOOTPROM.ASM -------------------------------------------------------------------------------- /System/CCP.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/System/CCP.ASM -------------------------------------------------------------------------------- /UTIL/BROWSE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/BROWSE.ASM -------------------------------------------------------------------------------- /UTIL/COPY.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/COPY.ASM -------------------------------------------------------------------------------- /UTIL/CPUTYPE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/CPUTYPE.ASM -------------------------------------------------------------------------------- /UTIL/D.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/D.ASM -------------------------------------------------------------------------------- /UTIL/D.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/D.COM -------------------------------------------------------------------------------- /UTIL/DRUCKER.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/DRUCKER.ASM -------------------------------------------------------------------------------- /UTIL/DUTIL.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/DUTIL.ASM -------------------------------------------------------------------------------- /UTIL/DateTime.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/DateTime.ASM -------------------------------------------------------------------------------- /UTIL/EDIT-VT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/EDIT-VT.ASM -------------------------------------------------------------------------------- /UTIL/EDIT-VT.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/EDIT-VT.COM -------------------------------------------------------------------------------- /UTIL/EDIT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/EDIT.ASM -------------------------------------------------------------------------------- /UTIL/EDIT.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/EDIT.COM -------------------------------------------------------------------------------- /UTIL/EPROMMER.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/EPROMMER.ASM -------------------------------------------------------------------------------- /UTIL/I2C-util.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/I2C-util.asm -------------------------------------------------------------------------------- /UTIL/SCSIMGR.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/SCSIMGR.ASM -------------------------------------------------------------------------------- /UTIL/SUPERTAP.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/SUPERTAP.ASM -------------------------------------------------------------------------------- /UTIL/XM384.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/XM384.asm -------------------------------------------------------------------------------- /UTIL/alloc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/alloc.asm -------------------------------------------------------------------------------- /UTIL/xmodem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/UTIL/xmodem.asm -------------------------------------------------------------------------------- /docs/ASM.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/ASM.doc -------------------------------------------------------------------------------- /docs/ASM_Speed.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/ASM_Speed.xls -------------------------------------------------------------------------------- /docs/CPM-65 BDOS.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/CPM-65 BDOS.docx -------------------------------------------------------------------------------- /docs/CPM-65 System Calls.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/CPM-65 System Calls.xlsx -------------------------------------------------------------------------------- /docs/CPM-65_System Error codes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/CPM-65_System Error codes.xlsx -------------------------------------------------------------------------------- /docs/EDIT Commands.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/EDIT Commands.xlsx -------------------------------------------------------------------------------- /docs/EDIT.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/EDIT.doc -------------------------------------------------------------------------------- /docs/I2C Junior Computer Implement.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/I2C Junior Computer Implement.docx -------------------------------------------------------------------------------- /docs/Junior Computer Memory Map.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/Junior Computer Memory Map.docx -------------------------------------------------------------------------------- /docs/Junior Computer System EEPROM Configuration.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/Junior Computer System EEPROM Configuration.docx -------------------------------------------------------------------------------- /docs/Junior Softwareliste V1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/Junior Softwareliste V1.xls -------------------------------------------------------------------------------- /docs/Literature Junior Computer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/Literature Junior Computer.docx -------------------------------------------------------------------------------- /docs/Pics/Junior Computer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/Pics/Junior Computer.jpg -------------------------------------------------------------------------------- /docs/XMODEM.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/docs/XMODEM.doc -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dietrich-L/CPM-65/HEAD/gpl-3.0.txt --------------------------------------------------------------------------------