├── .gitignore ├── AmigaDebugger.py ├── AmigaSnippets.py ├── BootblockFrame.py ├── Crc.py ├── DosFrame.py ├── DosLibrary.py ├── DosUtils.py ├── ExecLibrary.py ├── FloppyFrame.py ├── FloppyUtils.py ├── FloppyXferIO.py ├── FloppyXferUtils.py ├── LICENSE ├── Library.py ├── MenuFrame.py ├── NBDServer.py ├── Node.py ├── README.md ├── RomFrame.py ├── RomUtils.py ├── RomWack.py ├── SAD.py ├── SCSIDevice.py ├── SetupDialog.py ├── TrackdiskDevice.py ├── amigaXfer.py ├── amigaXfer.spec ├── asm ├── Makefile ├── bootblock_debug.S ├── bootblock_debug.desc ├── bootblock_dos.S ├── bootblock_dos.desc ├── bootblock_noboot.S ├── bootblock_noboot.desc ├── bootblock_optdebug.S ├── bootblock_optdebug.desc ├── bootblock_optdebug_old.S ├── bootblock_strapexit.S ├── bootblock_strapexit.desc ├── bootblock_warmdos.S ├── bootblock_warmdos.desc ├── crc16.S ├── crc16_xmodem.S ├── crc32.S ├── crc32.x68 ├── crc32_nolut.S ├── debug.S ├── debugloop.S ├── floppyxfer.S ├── memrecv.S ├── memsend.S ├── memsend_bne.S └── orange.S ├── docs ├── bootstrapping.txt └── romwack.txt ├── helpers ├── bootblock_prepare.py ├── crctable.py └── rawdisk.py ├── nativeobjs.list └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/.gitignore -------------------------------------------------------------------------------- /AmigaDebugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/AmigaDebugger.py -------------------------------------------------------------------------------- /AmigaSnippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/AmigaSnippets.py -------------------------------------------------------------------------------- /BootblockFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/BootblockFrame.py -------------------------------------------------------------------------------- /Crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/Crc.py -------------------------------------------------------------------------------- /DosFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/DosFrame.py -------------------------------------------------------------------------------- /DosLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/DosLibrary.py -------------------------------------------------------------------------------- /DosUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/DosUtils.py -------------------------------------------------------------------------------- /ExecLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/ExecLibrary.py -------------------------------------------------------------------------------- /FloppyFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/FloppyFrame.py -------------------------------------------------------------------------------- /FloppyUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/FloppyUtils.py -------------------------------------------------------------------------------- /FloppyXferIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/FloppyXferIO.py -------------------------------------------------------------------------------- /FloppyXferUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/FloppyXferUtils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/LICENSE -------------------------------------------------------------------------------- /Library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/Library.py -------------------------------------------------------------------------------- /MenuFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/MenuFrame.py -------------------------------------------------------------------------------- /NBDServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/NBDServer.py -------------------------------------------------------------------------------- /Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/Node.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/README.md -------------------------------------------------------------------------------- /RomFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/RomFrame.py -------------------------------------------------------------------------------- /RomUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/RomUtils.py -------------------------------------------------------------------------------- /RomWack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/RomWack.py -------------------------------------------------------------------------------- /SAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/SAD.py -------------------------------------------------------------------------------- /SCSIDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/SCSIDevice.py -------------------------------------------------------------------------------- /SetupDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/SetupDialog.py -------------------------------------------------------------------------------- /TrackdiskDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/TrackdiskDevice.py -------------------------------------------------------------------------------- /amigaXfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/amigaXfer.py -------------------------------------------------------------------------------- /amigaXfer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/amigaXfer.spec -------------------------------------------------------------------------------- /asm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/Makefile -------------------------------------------------------------------------------- /asm/bootblock_debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_debug.S -------------------------------------------------------------------------------- /asm/bootblock_debug.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_debug.desc -------------------------------------------------------------------------------- /asm/bootblock_dos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_dos.S -------------------------------------------------------------------------------- /asm/bootblock_dos.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_dos.desc -------------------------------------------------------------------------------- /asm/bootblock_noboot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_noboot.S -------------------------------------------------------------------------------- /asm/bootblock_noboot.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_noboot.desc -------------------------------------------------------------------------------- /asm/bootblock_optdebug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_optdebug.S -------------------------------------------------------------------------------- /asm/bootblock_optdebug.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_optdebug.desc -------------------------------------------------------------------------------- /asm/bootblock_optdebug_old.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_optdebug_old.S -------------------------------------------------------------------------------- /asm/bootblock_strapexit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_strapexit.S -------------------------------------------------------------------------------- /asm/bootblock_strapexit.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_strapexit.desc -------------------------------------------------------------------------------- /asm/bootblock_warmdos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_warmdos.S -------------------------------------------------------------------------------- /asm/bootblock_warmdos.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/bootblock_warmdos.desc -------------------------------------------------------------------------------- /asm/crc16.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/crc16.S -------------------------------------------------------------------------------- /asm/crc16_xmodem.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/crc16_xmodem.S -------------------------------------------------------------------------------- /asm/crc32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/crc32.S -------------------------------------------------------------------------------- /asm/crc32.x68: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/crc32.x68 -------------------------------------------------------------------------------- /asm/crc32_nolut.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/crc32_nolut.S -------------------------------------------------------------------------------- /asm/debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/debug.S -------------------------------------------------------------------------------- /asm/debugloop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/debugloop.S -------------------------------------------------------------------------------- /asm/floppyxfer.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/floppyxfer.S -------------------------------------------------------------------------------- /asm/memrecv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/memrecv.S -------------------------------------------------------------------------------- /asm/memsend.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/memsend.S -------------------------------------------------------------------------------- /asm/memsend_bne.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/memsend_bne.S -------------------------------------------------------------------------------- /asm/orange.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/asm/orange.S -------------------------------------------------------------------------------- /docs/bootstrapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/docs/bootstrapping.txt -------------------------------------------------------------------------------- /docs/romwack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/docs/romwack.txt -------------------------------------------------------------------------------- /helpers/bootblock_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/helpers/bootblock_prepare.py -------------------------------------------------------------------------------- /helpers/crctable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/helpers/crctable.py -------------------------------------------------------------------------------- /helpers/rawdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/helpers/rawdisk.py -------------------------------------------------------------------------------- /nativeobjs.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/nativeobjs.list -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvalles/pyamigadebug/HEAD/setup.py --------------------------------------------------------------------------------