├── README.md ├── dev-16k ├── Makefile ├── beer_16k.rom ├── dos2_16k.img ├── dsk_dos2.py ├── mbr720k.img ├── readme.txt ├── test720k_dos2_16k.dsk └── upd_dos2.py ├── dev-32k ├── Makefile ├── disk.inc ├── dos1x.asm ├── driver.asm ├── drv_ide.asm ├── drv_jio.asm ├── dummy.asm ├── msx.inc ├── p0_kernel.asm ├── p1_main.asm ├── p3_paging.asm ├── rom │ └── files.txt └── taste.asm ├── docs ├── BEER20 development steps.txt ├── Development source labels.txt ├── FAT16 partitions.txt └── MSXDOS kernel entry points.txt ├── hardware ├── beer-232 │ ├── LICENSE │ ├── beer_232.pdf │ ├── beer_232_bom.csv │ ├── gerber-beer-232-1_0.zip │ ├── kicad-beer-232-1_0.zip │ ├── msx beer232 front.jpg │ ├── msx beer232 rom only.jpg │ └── readme.txt └── pictures │ ├── SODA IDE - Buffer Prototype.jpg │ ├── SODA IDE - Front + Card.jpg │ ├── SODA IDE - Front.jpg │ ├── TASTE BEER.jpg │ └── TASTE SODA.jpg ├── history ├── rom │ ├── BEER18_DISK.ROM │ ├── BEER19_DISK.ROM │ └── msxd22.rom ├── src-msxdos22 │ ├── disk.inc │ ├── disks0.asm │ ├── disks1.asm │ ├── disks2.asm │ ├── driver.asm │ ├── kanji.asm │ └── make.bat └── src-origin │ ├── disk.inc │ ├── disk.mac │ ├── disks0.mac │ ├── disks1.mac │ ├── disks2.mac │ ├── driver.mac │ ├── hddrom18.mac │ └── kanji.mac ├── jio ├── bluetooth │ └── JIO with HC-06 bluetooth for Linux.odt ├── client │ ├── files.txt │ ├── jio_64k.img │ ├── jio_dos1.rom │ ├── jio_dos2.rom │ ├── pio_dos2.rom │ └── uart_dos2.rom ├── driver │ ├── crt.asm │ ├── drv_jio.asm │ ├── drv_jio.c │ ├── drv_jio_c.asm │ ├── merge_asm.py │ └── readme.txt ├── server │ ├── JIO protocol specification 1_0 draft.md │ └── readme.txt └── test │ ├── piotest.asm │ └── piotest.com ├── mod-32k ├── disk.inc ├── driver.asm ├── make.bat ├── msxd22s0.asm ├── msxd22s1.asm └── msxd22s2.asm ├── mod-beer20 ├── Makefile ├── disk-beer20.asm ├── disk.asm ├── driver-beer20.asm ├── driver-stub.asm └── readme.txt └── rom ├── BEER20_DISK.ROM ├── beer_and_soda.zip ├── msxd22s.rom ├── msxd22sx.rom └── readme.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/README.md -------------------------------------------------------------------------------- /dev-16k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-16k/Makefile -------------------------------------------------------------------------------- /dev-16k/beer_16k.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-16k/beer_16k.rom -------------------------------------------------------------------------------- /dev-16k/dos2_16k.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-16k/dos2_16k.img -------------------------------------------------------------------------------- /dev-16k/dsk_dos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-16k/dsk_dos2.py -------------------------------------------------------------------------------- /dev-16k/mbr720k.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-16k/mbr720k.img -------------------------------------------------------------------------------- /dev-16k/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-16k/readme.txt -------------------------------------------------------------------------------- /dev-16k/test720k_dos2_16k.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-16k/test720k_dos2_16k.dsk -------------------------------------------------------------------------------- /dev-16k/upd_dos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-16k/upd_dos2.py -------------------------------------------------------------------------------- /dev-32k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/Makefile -------------------------------------------------------------------------------- /dev-32k/disk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/disk.inc -------------------------------------------------------------------------------- /dev-32k/dos1x.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/dos1x.asm -------------------------------------------------------------------------------- /dev-32k/driver.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/driver.asm -------------------------------------------------------------------------------- /dev-32k/drv_ide.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/drv_ide.asm -------------------------------------------------------------------------------- /dev-32k/drv_jio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/drv_jio.asm -------------------------------------------------------------------------------- /dev-32k/dummy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/dummy.asm -------------------------------------------------------------------------------- /dev-32k/msx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/msx.inc -------------------------------------------------------------------------------- /dev-32k/p0_kernel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/p0_kernel.asm -------------------------------------------------------------------------------- /dev-32k/p1_main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/p1_main.asm -------------------------------------------------------------------------------- /dev-32k/p3_paging.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/p3_paging.asm -------------------------------------------------------------------------------- /dev-32k/rom/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/rom/files.txt -------------------------------------------------------------------------------- /dev-32k/taste.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/dev-32k/taste.asm -------------------------------------------------------------------------------- /docs/BEER20 development steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/docs/BEER20 development steps.txt -------------------------------------------------------------------------------- /docs/Development source labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/docs/Development source labels.txt -------------------------------------------------------------------------------- /docs/FAT16 partitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/docs/FAT16 partitions.txt -------------------------------------------------------------------------------- /docs/MSXDOS kernel entry points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/docs/MSXDOS kernel entry points.txt -------------------------------------------------------------------------------- /hardware/beer-232/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/beer-232/LICENSE -------------------------------------------------------------------------------- /hardware/beer-232/beer_232.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/beer-232/beer_232.pdf -------------------------------------------------------------------------------- /hardware/beer-232/beer_232_bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/beer-232/beer_232_bom.csv -------------------------------------------------------------------------------- /hardware/beer-232/gerber-beer-232-1_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/beer-232/gerber-beer-232-1_0.zip -------------------------------------------------------------------------------- /hardware/beer-232/kicad-beer-232-1_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/beer-232/kicad-beer-232-1_0.zip -------------------------------------------------------------------------------- /hardware/beer-232/msx beer232 front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/beer-232/msx beer232 front.jpg -------------------------------------------------------------------------------- /hardware/beer-232/msx beer232 rom only.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/beer-232/msx beer232 rom only.jpg -------------------------------------------------------------------------------- /hardware/beer-232/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/beer-232/readme.txt -------------------------------------------------------------------------------- /hardware/pictures/SODA IDE - Buffer Prototype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/pictures/SODA IDE - Buffer Prototype.jpg -------------------------------------------------------------------------------- /hardware/pictures/SODA IDE - Front + Card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/pictures/SODA IDE - Front + Card.jpg -------------------------------------------------------------------------------- /hardware/pictures/SODA IDE - Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/pictures/SODA IDE - Front.jpg -------------------------------------------------------------------------------- /hardware/pictures/TASTE BEER.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/pictures/TASTE BEER.jpg -------------------------------------------------------------------------------- /hardware/pictures/TASTE SODA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/hardware/pictures/TASTE SODA.jpg -------------------------------------------------------------------------------- /history/rom/BEER18_DISK.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/rom/BEER18_DISK.ROM -------------------------------------------------------------------------------- /history/rom/BEER19_DISK.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/rom/BEER19_DISK.ROM -------------------------------------------------------------------------------- /history/rom/msxd22.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/rom/msxd22.rom -------------------------------------------------------------------------------- /history/src-msxdos22/disk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-msxdos22/disk.inc -------------------------------------------------------------------------------- /history/src-msxdos22/disks0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-msxdos22/disks0.asm -------------------------------------------------------------------------------- /history/src-msxdos22/disks1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-msxdos22/disks1.asm -------------------------------------------------------------------------------- /history/src-msxdos22/disks2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-msxdos22/disks2.asm -------------------------------------------------------------------------------- /history/src-msxdos22/driver.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-msxdos22/driver.asm -------------------------------------------------------------------------------- /history/src-msxdos22/kanji.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-msxdos22/kanji.asm -------------------------------------------------------------------------------- /history/src-msxdos22/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-msxdos22/make.bat -------------------------------------------------------------------------------- /history/src-origin/disk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-origin/disk.inc -------------------------------------------------------------------------------- /history/src-origin/disk.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-origin/disk.mac -------------------------------------------------------------------------------- /history/src-origin/disks0.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-origin/disks0.mac -------------------------------------------------------------------------------- /history/src-origin/disks1.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-origin/disks1.mac -------------------------------------------------------------------------------- /history/src-origin/disks2.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-origin/disks2.mac -------------------------------------------------------------------------------- /history/src-origin/driver.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-origin/driver.mac -------------------------------------------------------------------------------- /history/src-origin/hddrom18.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-origin/hddrom18.mac -------------------------------------------------------------------------------- /history/src-origin/kanji.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/history/src-origin/kanji.mac -------------------------------------------------------------------------------- /jio/bluetooth/JIO with HC-06 bluetooth for Linux.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/bluetooth/JIO with HC-06 bluetooth for Linux.odt -------------------------------------------------------------------------------- /jio/client/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/client/files.txt -------------------------------------------------------------------------------- /jio/client/jio_64k.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/client/jio_64k.img -------------------------------------------------------------------------------- /jio/client/jio_dos1.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/client/jio_dos1.rom -------------------------------------------------------------------------------- /jio/client/jio_dos2.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/client/jio_dos2.rom -------------------------------------------------------------------------------- /jio/client/pio_dos2.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/client/pio_dos2.rom -------------------------------------------------------------------------------- /jio/client/uart_dos2.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/client/uart_dos2.rom -------------------------------------------------------------------------------- /jio/driver/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/driver/crt.asm -------------------------------------------------------------------------------- /jio/driver/drv_jio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/driver/drv_jio.asm -------------------------------------------------------------------------------- /jio/driver/drv_jio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/driver/drv_jio.c -------------------------------------------------------------------------------- /jio/driver/drv_jio_c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/driver/drv_jio_c.asm -------------------------------------------------------------------------------- /jio/driver/merge_asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/driver/merge_asm.py -------------------------------------------------------------------------------- /jio/driver/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/driver/readme.txt -------------------------------------------------------------------------------- /jio/server/JIO protocol specification 1_0 draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/server/JIO protocol specification 1_0 draft.md -------------------------------------------------------------------------------- /jio/server/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/server/readme.txt -------------------------------------------------------------------------------- /jio/test/piotest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/test/piotest.asm -------------------------------------------------------------------------------- /jio/test/piotest.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/jio/test/piotest.com -------------------------------------------------------------------------------- /mod-32k/disk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-32k/disk.inc -------------------------------------------------------------------------------- /mod-32k/driver.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-32k/driver.asm -------------------------------------------------------------------------------- /mod-32k/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-32k/make.bat -------------------------------------------------------------------------------- /mod-32k/msxd22s0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-32k/msxd22s0.asm -------------------------------------------------------------------------------- /mod-32k/msxd22s1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-32k/msxd22s1.asm -------------------------------------------------------------------------------- /mod-32k/msxd22s2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-32k/msxd22s2.asm -------------------------------------------------------------------------------- /mod-beer20/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-beer20/Makefile -------------------------------------------------------------------------------- /mod-beer20/disk-beer20.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-beer20/disk-beer20.asm -------------------------------------------------------------------------------- /mod-beer20/disk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-beer20/disk.asm -------------------------------------------------------------------------------- /mod-beer20/driver-beer20.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-beer20/driver-beer20.asm -------------------------------------------------------------------------------- /mod-beer20/driver-stub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-beer20/driver-stub.asm -------------------------------------------------------------------------------- /mod-beer20/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/mod-beer20/readme.txt -------------------------------------------------------------------------------- /rom/BEER20_DISK.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/rom/BEER20_DISK.ROM -------------------------------------------------------------------------------- /rom/beer_and_soda.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/rom/beer_and_soda.zip -------------------------------------------------------------------------------- /rom/msxd22s.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/rom/msxd22s.rom -------------------------------------------------------------------------------- /rom/msxd22sx.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/rom/msxd22sx.rom -------------------------------------------------------------------------------- /rom/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rendsh/msxdos2s/HEAD/rom/readme.txt --------------------------------------------------------------------------------