├── .github └── workflows │ └── run-tests.yaml ├── .gitignore ├── COPYING ├── Makefile ├── Musashi ├── m68k.h ├── m68k_in.c ├── m68kcpu.c ├── m68kcpu.h ├── m68kdasm.c └── m68kmake.c ├── README.md ├── TODO ├── bios.c ├── bios.h ├── config.h ├── cpu.c ├── cpu.h ├── gemdos.c ├── gemdos.h ├── gemdos_p.h ├── gemdoscon.c ├── gemdoscon_p.h ├── gemdosfile.c ├── gemdosfile_p.h ├── gemdosmem.c ├── gemdosmem_p.h ├── install-deps.sh ├── m68kconf.h ├── main.c ├── memory.c ├── memory.h ├── tests ├── Bconout.s ├── Cconout.s ├── Cconws.s ├── Dcreate.s ├── Fattrib.s ├── Fclose.s ├── Fcreate.s ├── Fdelete.s ├── Fopen.s ├── Fread.s ├── Fstraversal.s ├── Fwrite.s ├── Makefile ├── Pterm.s ├── Pterm0.s ├── Supexec.s ├── c-helloworld.c └── cmdline.s ├── tossystem.c ├── tossystem.h ├── utils.c ├── utils.h ├── xbios.c └── xbios.h /.github/workflows/run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/.github/workflows/run-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/Makefile -------------------------------------------------------------------------------- /Musashi/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/Musashi/m68k.h -------------------------------------------------------------------------------- /Musashi/m68k_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/Musashi/m68k_in.c -------------------------------------------------------------------------------- /Musashi/m68kcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/Musashi/m68kcpu.c -------------------------------------------------------------------------------- /Musashi/m68kcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/Musashi/m68kcpu.h -------------------------------------------------------------------------------- /Musashi/m68kdasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/Musashi/m68kdasm.c -------------------------------------------------------------------------------- /Musashi/m68kmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/Musashi/m68kmake.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/TODO -------------------------------------------------------------------------------- /bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/bios.c -------------------------------------------------------------------------------- /bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/bios.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/config.h -------------------------------------------------------------------------------- /cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/cpu.c -------------------------------------------------------------------------------- /cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/cpu.h -------------------------------------------------------------------------------- /gemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdos.c -------------------------------------------------------------------------------- /gemdos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdos.h -------------------------------------------------------------------------------- /gemdos_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdos_p.h -------------------------------------------------------------------------------- /gemdoscon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdoscon.c -------------------------------------------------------------------------------- /gemdoscon_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdoscon_p.h -------------------------------------------------------------------------------- /gemdosfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdosfile.c -------------------------------------------------------------------------------- /gemdosfile_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdosfile_p.h -------------------------------------------------------------------------------- /gemdosmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdosmem.c -------------------------------------------------------------------------------- /gemdosmem_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/gemdosmem_p.h -------------------------------------------------------------------------------- /install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/install-deps.sh -------------------------------------------------------------------------------- /m68kconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/m68kconf.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/main.c -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/memory.c -------------------------------------------------------------------------------- /memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/memory.h -------------------------------------------------------------------------------- /tests/Bconout.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Bconout.s -------------------------------------------------------------------------------- /tests/Cconout.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Cconout.s -------------------------------------------------------------------------------- /tests/Cconws.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Cconws.s -------------------------------------------------------------------------------- /tests/Dcreate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Dcreate.s -------------------------------------------------------------------------------- /tests/Fattrib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Fattrib.s -------------------------------------------------------------------------------- /tests/Fclose.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Fclose.s -------------------------------------------------------------------------------- /tests/Fcreate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Fcreate.s -------------------------------------------------------------------------------- /tests/Fdelete.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Fdelete.s -------------------------------------------------------------------------------- /tests/Fopen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Fopen.s -------------------------------------------------------------------------------- /tests/Fread.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Fread.s -------------------------------------------------------------------------------- /tests/Fstraversal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Fstraversal.s -------------------------------------------------------------------------------- /tests/Fwrite.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Fwrite.s -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/Pterm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Pterm.s -------------------------------------------------------------------------------- /tests/Pterm0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Pterm0.s -------------------------------------------------------------------------------- /tests/Supexec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/Supexec.s -------------------------------------------------------------------------------- /tests/c-helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/c-helloworld.c -------------------------------------------------------------------------------- /tests/cmdline.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tests/cmdline.s -------------------------------------------------------------------------------- /tossystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tossystem.c -------------------------------------------------------------------------------- /tossystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/tossystem.h -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/utils.h -------------------------------------------------------------------------------- /xbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/xbios.c -------------------------------------------------------------------------------- /xbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e8johan/tosemu/HEAD/xbios.h --------------------------------------------------------------------------------