├── .gitattributes ├── BUILD.BAT ├── LICENSE ├── README ├── SOFTMPU.EXE └── SRC ├── APPSTR.ASM ├── EXPORT.H ├── INTHAND.ASM ├── MIDI.C ├── MPU401.C ├── PIC.C ├── PORTHAND.ASM ├── RESIDENT.ASM ├── RESUTILS.ASM ├── SOFTMPU.ASM ├── STRINGS.ASM ├── TRANS.ASM └── UTILS.ASM /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat eol=crlf 2 | -------------------------------------------------------------------------------- /BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/BUILD.BAT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/README -------------------------------------------------------------------------------- /SOFTMPU.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SOFTMPU.EXE -------------------------------------------------------------------------------- /SRC/APPSTR.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/APPSTR.ASM -------------------------------------------------------------------------------- /SRC/EXPORT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/EXPORT.H -------------------------------------------------------------------------------- /SRC/INTHAND.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/INTHAND.ASM -------------------------------------------------------------------------------- /SRC/MIDI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/MIDI.C -------------------------------------------------------------------------------- /SRC/MPU401.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/MPU401.C -------------------------------------------------------------------------------- /SRC/PIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/PIC.C -------------------------------------------------------------------------------- /SRC/PORTHAND.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/PORTHAND.ASM -------------------------------------------------------------------------------- /SRC/RESIDENT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/RESIDENT.ASM -------------------------------------------------------------------------------- /SRC/RESUTILS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/RESUTILS.ASM -------------------------------------------------------------------------------- /SRC/SOFTMPU.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/SOFTMPU.ASM -------------------------------------------------------------------------------- /SRC/STRINGS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/STRINGS.ASM -------------------------------------------------------------------------------- /SRC/TRANS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/TRANS.ASM -------------------------------------------------------------------------------- /SRC/UTILS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjt42/softmpu/HEAD/SRC/UTILS.ASM --------------------------------------------------------------------------------