├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── COPYING ├── Makefile ├── Makefile.common ├── Makefile.libretro ├── README-JP.MD ├── README.MD ├── develop.txt ├── doc └── kero_src.txt ├── fmgen ├── fmg_wrap.cpp ├── fmg_wrap.h ├── fmgen.cpp ├── fmgen.h ├── fmgeninl.h ├── fmtimer.cpp ├── fmtimer.h ├── misc.h ├── opm.cpp ├── opm.h ├── opna.cpp ├── opna.h ├── psg.cpp ├── psg.h └── readme.txt ├── game_notes.md ├── kaiseki.txt ├── libretro-common ├── compat │ ├── compat_posix_string.c │ ├── compat_snprintf.c │ ├── compat_strcasestr.c │ ├── compat_strl.c │ └── fopen_utf8.c ├── encodings │ └── encoding_utf.c ├── file │ ├── file_path.c │ ├── file_path_io.c │ └── retro_dirent.c ├── include │ ├── boolean.h │ ├── compat │ │ ├── fopen_utf8.h │ │ ├── msvc.h │ │ ├── msvc │ │ │ └── stdint.h │ │ ├── posix_string.h │ │ ├── strcasestr.h │ │ └── strl.h │ ├── encodings │ │ └── utf.h │ ├── file │ │ └── file_path.h │ ├── libretro.h │ ├── libretro_gskit_ps2.h │ ├── memalign.h │ ├── retro_assert.h │ ├── retro_common.h │ ├── retro_common_api.h │ ├── retro_dirent.h │ ├── retro_environment.h │ ├── retro_inline.h │ ├── retro_miscellaneous.h │ ├── streams │ │ ├── file_stream.h │ │ ├── file_stream_transforms.h │ │ └── memory_stream.h │ ├── string │ │ └── stdstring.h │ ├── time │ │ └── rtime.h │ └── vfs │ │ ├── vfs.h │ │ └── vfs_implementation.h ├── streams │ ├── file_stream.c │ └── file_stream_transforms.c ├── string │ └── stdstring.c ├── time │ └── rtime.c └── vfs │ └── vfs_implementation.c ├── libretro.c ├── libretro ├── cdrom.h ├── common.h ├── compiler.h ├── dosio.c ├── dosio.h ├── dswin.c ├── dswin.h ├── fake.c ├── jni │ ├── Android.mk │ └── Application.mk ├── joystick.c ├── joystick.h ├── keyboard.c ├── keyboard.h ├── menu_str_sjis.txt ├── mmsystem.h ├── mouse.c ├── mouse.h ├── peace.c ├── peace.h ├── prop.c ├── prop.h ├── state.c ├── state.h ├── state_inline.h ├── status.h ├── timer.c ├── timer.h ├── windraw.c ├── windraw.h ├── winui.c ├── winui.h └── winx68k.h ├── libretro_core_options.h ├── libretro_core_options_intl.h ├── link.T ├── m68000 ├── c68k │ ├── c68k.c │ ├── c68k.h │ ├── c68k_op0.inc │ ├── c68k_op1.inc │ ├── c68k_op2.inc │ ├── c68k_op3.inc │ ├── c68k_op4.inc │ ├── c68k_op5.inc │ ├── c68k_op6.inc │ ├── c68k_op7.inc │ ├── c68k_op8.inc │ ├── c68k_op9.inc │ ├── c68k_opA.inc │ ├── c68k_opB.inc │ ├── c68k_opC.inc │ ├── c68k_opD.inc │ ├── c68k_opE.inc │ ├── c68k_opF.inc │ ├── c68kexec.c │ └── core.h ├── cyclone.h ├── cyclone.s ├── m68000.c ├── m68000.h └── musashi │ ├── m68k.h │ ├── m68kconf.h │ ├── m68kcpu.c │ ├── m68kcpu.h │ ├── m68kfpu.c │ ├── m68kmmu.h │ ├── m68kops.c │ ├── m68kops.h │ └── softfloat │ ├── README.txt │ ├── mamesf.h │ ├── milieu.h │ ├── softfloat-macros │ ├── softfloat-specialize │ ├── softfloat.c │ └── softfloat.h ├── readme.txt ├── version.txt └── x68k ├── adpcm.c ├── adpcm.h ├── bg.c ├── bg.h ├── crtc.c ├── crtc.h ├── disk_d88.c ├── disk_d88.h ├── disk_dim.c ├── disk_dim.h ├── disk_xdf.c ├── disk_xdf.h ├── dmac.c ├── dmac.h ├── fdc.c ├── fdc.h ├── fdd.c ├── fdd.h ├── gvram.c ├── gvram.h ├── ioc.c ├── ioc.h ├── irqh.c ├── irqh.h ├── mem_wrap.c ├── mercury.c ├── mercury.h ├── mfp.c ├── mfp.h ├── midi.c ├── midi.h ├── palette.c ├── palette.h ├── pia.c ├── pia.h ├── rtc.c ├── rtc.h ├── sasi.c ├── sasi.h ├── scc.c ├── scc.h ├── scsi.c ├── scsi.h ├── sram.c ├── sram.h ├── sysport.c ├── sysport.h ├── tvram.c ├── tvram.h └── x68kmemory.h /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include Makefile.libretro 2 | -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/Makefile.common -------------------------------------------------------------------------------- /Makefile.libretro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/Makefile.libretro -------------------------------------------------------------------------------- /README-JP.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/README-JP.MD -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/README.MD -------------------------------------------------------------------------------- /develop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/develop.txt -------------------------------------------------------------------------------- /doc/kero_src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/doc/kero_src.txt -------------------------------------------------------------------------------- /fmgen/fmg_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/fmg_wrap.cpp -------------------------------------------------------------------------------- /fmgen/fmg_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/fmg_wrap.h -------------------------------------------------------------------------------- /fmgen/fmgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/fmgen.cpp -------------------------------------------------------------------------------- /fmgen/fmgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/fmgen.h -------------------------------------------------------------------------------- /fmgen/fmgeninl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/fmgeninl.h -------------------------------------------------------------------------------- /fmgen/fmtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/fmtimer.cpp -------------------------------------------------------------------------------- /fmgen/fmtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/fmtimer.h -------------------------------------------------------------------------------- /fmgen/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/misc.h -------------------------------------------------------------------------------- /fmgen/opm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/opm.cpp -------------------------------------------------------------------------------- /fmgen/opm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/opm.h -------------------------------------------------------------------------------- /fmgen/opna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/opna.cpp -------------------------------------------------------------------------------- /fmgen/opna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/opna.h -------------------------------------------------------------------------------- /fmgen/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/psg.cpp -------------------------------------------------------------------------------- /fmgen/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/psg.h -------------------------------------------------------------------------------- /fmgen/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/fmgen/readme.txt -------------------------------------------------------------------------------- /game_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/game_notes.md -------------------------------------------------------------------------------- /kaiseki.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/kaiseki.txt -------------------------------------------------------------------------------- /libretro-common/compat/compat_posix_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/compat/compat_posix_string.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/compat/compat_snprintf.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/compat/compat_strcasestr.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/compat/compat_strl.c -------------------------------------------------------------------------------- /libretro-common/compat/fopen_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/compat/fopen_utf8.c -------------------------------------------------------------------------------- /libretro-common/encodings/encoding_utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/encodings/encoding_utf.c -------------------------------------------------------------------------------- /libretro-common/file/file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/file/file_path.c -------------------------------------------------------------------------------- /libretro-common/file/file_path_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/file/file_path_io.c -------------------------------------------------------------------------------- /libretro-common/file/retro_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/file/retro_dirent.c -------------------------------------------------------------------------------- /libretro-common/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/boolean.h -------------------------------------------------------------------------------- /libretro-common/include/compat/fopen_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/compat/fopen_utf8.h -------------------------------------------------------------------------------- /libretro-common/include/compat/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/compat/msvc.h -------------------------------------------------------------------------------- /libretro-common/include/compat/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/compat/msvc/stdint.h -------------------------------------------------------------------------------- /libretro-common/include/compat/posix_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/compat/posix_string.h -------------------------------------------------------------------------------- /libretro-common/include/compat/strcasestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/compat/strcasestr.h -------------------------------------------------------------------------------- /libretro-common/include/compat/strl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/compat/strl.h -------------------------------------------------------------------------------- /libretro-common/include/encodings/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/encodings/utf.h -------------------------------------------------------------------------------- /libretro-common/include/file/file_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/file/file_path.h -------------------------------------------------------------------------------- /libretro-common/include/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/libretro.h -------------------------------------------------------------------------------- /libretro-common/include/libretro_gskit_ps2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/libretro_gskit_ps2.h -------------------------------------------------------------------------------- /libretro-common/include/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/memalign.h -------------------------------------------------------------------------------- /libretro-common/include/retro_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/retro_assert.h -------------------------------------------------------------------------------- /libretro-common/include/retro_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/retro_common.h -------------------------------------------------------------------------------- /libretro-common/include/retro_common_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/retro_common_api.h -------------------------------------------------------------------------------- /libretro-common/include/retro_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/retro_dirent.h -------------------------------------------------------------------------------- /libretro-common/include/retro_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/retro_environment.h -------------------------------------------------------------------------------- /libretro-common/include/retro_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/retro_inline.h -------------------------------------------------------------------------------- /libretro-common/include/retro_miscellaneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/retro_miscellaneous.h -------------------------------------------------------------------------------- /libretro-common/include/streams/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/streams/file_stream.h -------------------------------------------------------------------------------- /libretro-common/include/streams/file_stream_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/streams/file_stream_transforms.h -------------------------------------------------------------------------------- /libretro-common/include/streams/memory_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/streams/memory_stream.h -------------------------------------------------------------------------------- /libretro-common/include/string/stdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/string/stdstring.h -------------------------------------------------------------------------------- /libretro-common/include/time/rtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/time/rtime.h -------------------------------------------------------------------------------- /libretro-common/include/vfs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/vfs/vfs.h -------------------------------------------------------------------------------- /libretro-common/include/vfs/vfs_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/include/vfs/vfs_implementation.h -------------------------------------------------------------------------------- /libretro-common/streams/file_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/streams/file_stream.c -------------------------------------------------------------------------------- /libretro-common/streams/file_stream_transforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/streams/file_stream_transforms.c -------------------------------------------------------------------------------- /libretro-common/string/stdstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/string/stdstring.c -------------------------------------------------------------------------------- /libretro-common/time/rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/time/rtime.c -------------------------------------------------------------------------------- /libretro-common/vfs/vfs_implementation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro-common/vfs/vfs_implementation.c -------------------------------------------------------------------------------- /libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro.c -------------------------------------------------------------------------------- /libretro/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/cdrom.h -------------------------------------------------------------------------------- /libretro/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/common.h -------------------------------------------------------------------------------- /libretro/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/compiler.h -------------------------------------------------------------------------------- /libretro/dosio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/dosio.c -------------------------------------------------------------------------------- /libretro/dosio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/dosio.h -------------------------------------------------------------------------------- /libretro/dswin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/dswin.c -------------------------------------------------------------------------------- /libretro/dswin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/dswin.h -------------------------------------------------------------------------------- /libretro/fake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/fake.c -------------------------------------------------------------------------------- /libretro/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/jni/Android.mk -------------------------------------------------------------------------------- /libretro/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /libretro/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/joystick.c -------------------------------------------------------------------------------- /libretro/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/joystick.h -------------------------------------------------------------------------------- /libretro/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/keyboard.c -------------------------------------------------------------------------------- /libretro/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/keyboard.h -------------------------------------------------------------------------------- /libretro/menu_str_sjis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/menu_str_sjis.txt -------------------------------------------------------------------------------- /libretro/mmsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/mmsystem.h -------------------------------------------------------------------------------- /libretro/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/mouse.c -------------------------------------------------------------------------------- /libretro/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/mouse.h -------------------------------------------------------------------------------- /libretro/peace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/peace.c -------------------------------------------------------------------------------- /libretro/peace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/peace.h -------------------------------------------------------------------------------- /libretro/prop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/prop.c -------------------------------------------------------------------------------- /libretro/prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/prop.h -------------------------------------------------------------------------------- /libretro/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/state.c -------------------------------------------------------------------------------- /libretro/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/state.h -------------------------------------------------------------------------------- /libretro/state_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/state_inline.h -------------------------------------------------------------------------------- /libretro/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/status.h -------------------------------------------------------------------------------- /libretro/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/timer.c -------------------------------------------------------------------------------- /libretro/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/timer.h -------------------------------------------------------------------------------- /libretro/windraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/windraw.c -------------------------------------------------------------------------------- /libretro/windraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/windraw.h -------------------------------------------------------------------------------- /libretro/winui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/winui.c -------------------------------------------------------------------------------- /libretro/winui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/winui.h -------------------------------------------------------------------------------- /libretro/winx68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro/winx68k.h -------------------------------------------------------------------------------- /libretro_core_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro_core_options.h -------------------------------------------------------------------------------- /libretro_core_options_intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/libretro_core_options_intl.h -------------------------------------------------------------------------------- /link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/link.T -------------------------------------------------------------------------------- /m68000/c68k/c68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k.c -------------------------------------------------------------------------------- /m68000/c68k/c68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k.h -------------------------------------------------------------------------------- /m68000/c68k/c68k_op0.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op0.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op1.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op2.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op3.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op4.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op4.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op5.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op5.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op6.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op6.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op7.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op7.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op8.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_op9.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_op9.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_opA.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_opA.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_opB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_opB.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_opC.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_opC.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_opD.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_opD.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_opE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_opE.inc -------------------------------------------------------------------------------- /m68000/c68k/c68k_opF.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68k_opF.inc -------------------------------------------------------------------------------- /m68000/c68k/c68kexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/c68kexec.c -------------------------------------------------------------------------------- /m68000/c68k/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/c68k/core.h -------------------------------------------------------------------------------- /m68000/cyclone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/cyclone.h -------------------------------------------------------------------------------- /m68000/cyclone.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/cyclone.s -------------------------------------------------------------------------------- /m68000/m68000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/m68000.c -------------------------------------------------------------------------------- /m68000/m68000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/m68000.h -------------------------------------------------------------------------------- /m68000/musashi/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/m68k.h -------------------------------------------------------------------------------- /m68000/musashi/m68kconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/m68kconf.h -------------------------------------------------------------------------------- /m68000/musashi/m68kcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/m68kcpu.c -------------------------------------------------------------------------------- /m68000/musashi/m68kcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/m68kcpu.h -------------------------------------------------------------------------------- /m68000/musashi/m68kfpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/m68kfpu.c -------------------------------------------------------------------------------- /m68000/musashi/m68kmmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/m68kmmu.h -------------------------------------------------------------------------------- /m68000/musashi/m68kops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/m68kops.c -------------------------------------------------------------------------------- /m68000/musashi/m68kops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/m68kops.h -------------------------------------------------------------------------------- /m68000/musashi/softfloat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/softfloat/README.txt -------------------------------------------------------------------------------- /m68000/musashi/softfloat/mamesf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/softfloat/mamesf.h -------------------------------------------------------------------------------- /m68000/musashi/softfloat/milieu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/softfloat/milieu.h -------------------------------------------------------------------------------- /m68000/musashi/softfloat/softfloat-macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/softfloat/softfloat-macros -------------------------------------------------------------------------------- /m68000/musashi/softfloat/softfloat-specialize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/softfloat/softfloat-specialize -------------------------------------------------------------------------------- /m68000/musashi/softfloat/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/softfloat/softfloat.c -------------------------------------------------------------------------------- /m68000/musashi/softfloat/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/m68000/musashi/softfloat/softfloat.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/readme.txt -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | PX68K_VERSION=0.15 2 | -------------------------------------------------------------------------------- /x68k/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/adpcm.c -------------------------------------------------------------------------------- /x68k/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/adpcm.h -------------------------------------------------------------------------------- /x68k/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/bg.c -------------------------------------------------------------------------------- /x68k/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/bg.h -------------------------------------------------------------------------------- /x68k/crtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/crtc.c -------------------------------------------------------------------------------- /x68k/crtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/crtc.h -------------------------------------------------------------------------------- /x68k/disk_d88.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/disk_d88.c -------------------------------------------------------------------------------- /x68k/disk_d88.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/disk_d88.h -------------------------------------------------------------------------------- /x68k/disk_dim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/disk_dim.c -------------------------------------------------------------------------------- /x68k/disk_dim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/disk_dim.h -------------------------------------------------------------------------------- /x68k/disk_xdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/disk_xdf.c -------------------------------------------------------------------------------- /x68k/disk_xdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/disk_xdf.h -------------------------------------------------------------------------------- /x68k/dmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/dmac.c -------------------------------------------------------------------------------- /x68k/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/dmac.h -------------------------------------------------------------------------------- /x68k/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/fdc.c -------------------------------------------------------------------------------- /x68k/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/fdc.h -------------------------------------------------------------------------------- /x68k/fdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/fdd.c -------------------------------------------------------------------------------- /x68k/fdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/fdd.h -------------------------------------------------------------------------------- /x68k/gvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/gvram.c -------------------------------------------------------------------------------- /x68k/gvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/gvram.h -------------------------------------------------------------------------------- /x68k/ioc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/ioc.c -------------------------------------------------------------------------------- /x68k/ioc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/ioc.h -------------------------------------------------------------------------------- /x68k/irqh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/irqh.c -------------------------------------------------------------------------------- /x68k/irqh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/irqh.h -------------------------------------------------------------------------------- /x68k/mem_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/mem_wrap.c -------------------------------------------------------------------------------- /x68k/mercury.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/mercury.c -------------------------------------------------------------------------------- /x68k/mercury.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/mercury.h -------------------------------------------------------------------------------- /x68k/mfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/mfp.c -------------------------------------------------------------------------------- /x68k/mfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/mfp.h -------------------------------------------------------------------------------- /x68k/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/midi.c -------------------------------------------------------------------------------- /x68k/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/midi.h -------------------------------------------------------------------------------- /x68k/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/palette.c -------------------------------------------------------------------------------- /x68k/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/palette.h -------------------------------------------------------------------------------- /x68k/pia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/pia.c -------------------------------------------------------------------------------- /x68k/pia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/pia.h -------------------------------------------------------------------------------- /x68k/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/rtc.c -------------------------------------------------------------------------------- /x68k/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/rtc.h -------------------------------------------------------------------------------- /x68k/sasi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/sasi.c -------------------------------------------------------------------------------- /x68k/sasi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/sasi.h -------------------------------------------------------------------------------- /x68k/scc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/scc.c -------------------------------------------------------------------------------- /x68k/scc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/scc.h -------------------------------------------------------------------------------- /x68k/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/scsi.c -------------------------------------------------------------------------------- /x68k/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/scsi.h -------------------------------------------------------------------------------- /x68k/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/sram.c -------------------------------------------------------------------------------- /x68k/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/sram.h -------------------------------------------------------------------------------- /x68k/sysport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/sysport.c -------------------------------------------------------------------------------- /x68k/sysport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/sysport.h -------------------------------------------------------------------------------- /x68k/tvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/tvram.c -------------------------------------------------------------------------------- /x68k/tvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/tvram.h -------------------------------------------------------------------------------- /x68k/x68kmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/px68k-libretro/HEAD/x68k/x68kmemory.h --------------------------------------------------------------------------------