├── LICENSE ├── Makefile ├── README-compiling.md ├── README.md ├── defines.h ├── disassemble.sh ├── diskio.c ├── diskio.h ├── ff.c ├── ff.h ├── ffconf.h ├── ffunicode.c ├── integer.h ├── interrupt.S ├── kcmfs ├── .gitignore ├── README-kcmfs.md ├── build.sh ├── menu.asm └── menu.rom ├── main.c ├── main.h ├── misc_handlers.c ├── msx_fdc_command_branchtable.S ├── msx_fdc_readwrite_branchtable.S ├── msx_io_branchtable.S ├── startup_stm32f4xx.s ├── stm32_flash.ld ├── stm32f4_discovery.c ├── stm32f4_discovery.h ├── stm32f4_discovery_sdio_sd.c ├── stm32f4_discovery_sdio_sd.h ├── stm32f4xx_conf.h ├── system_stm32f4xx.c ├── transfer.sh ├── util.c └── util.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/Makefile -------------------------------------------------------------------------------- /README-compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/README-compiling.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/README.md -------------------------------------------------------------------------------- /defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/defines.h -------------------------------------------------------------------------------- /disassemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/disassemble.sh -------------------------------------------------------------------------------- /diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/diskio.c -------------------------------------------------------------------------------- /diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/diskio.h -------------------------------------------------------------------------------- /ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/ff.c -------------------------------------------------------------------------------- /ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/ff.h -------------------------------------------------------------------------------- /ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/ffconf.h -------------------------------------------------------------------------------- /ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/ffunicode.c -------------------------------------------------------------------------------- /integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/integer.h -------------------------------------------------------------------------------- /interrupt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/interrupt.S -------------------------------------------------------------------------------- /kcmfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/kcmfs/.gitignore -------------------------------------------------------------------------------- /kcmfs/README-kcmfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/kcmfs/README-kcmfs.md -------------------------------------------------------------------------------- /kcmfs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/kcmfs/build.sh -------------------------------------------------------------------------------- /kcmfs/menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/kcmfs/menu.asm -------------------------------------------------------------------------------- /kcmfs/menu.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/kcmfs/menu.rom -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/main.h -------------------------------------------------------------------------------- /misc_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/misc_handlers.c -------------------------------------------------------------------------------- /msx_fdc_command_branchtable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/msx_fdc_command_branchtable.S -------------------------------------------------------------------------------- /msx_fdc_readwrite_branchtable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/msx_fdc_readwrite_branchtable.S -------------------------------------------------------------------------------- /msx_io_branchtable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/msx_io_branchtable.S -------------------------------------------------------------------------------- /startup_stm32f4xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/startup_stm32f4xx.s -------------------------------------------------------------------------------- /stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/stm32_flash.ld -------------------------------------------------------------------------------- /stm32f4_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/stm32f4_discovery.c -------------------------------------------------------------------------------- /stm32f4_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/stm32f4_discovery.h -------------------------------------------------------------------------------- /stm32f4_discovery_sdio_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/stm32f4_discovery_sdio_sd.c -------------------------------------------------------------------------------- /stm32f4_discovery_sdio_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/stm32f4_discovery_sdio_sd.h -------------------------------------------------------------------------------- /stm32f4xx_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/stm32f4xx_conf.h -------------------------------------------------------------------------------- /system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/system_stm32f4xx.c -------------------------------------------------------------------------------- /transfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/transfer.sh -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelcrash/msx-rom-and-floppy-emulator/HEAD/util.h --------------------------------------------------------------------------------