├── .circleci └── config.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── Makefile ├── Readme.md ├── bin └── .gitignore ├── blkfiles ├── compile.tcl ├── dist └── .gitignore ├── dsk ├── AUTOEXEC.BA2 ├── AUTOEXEC.BAT └── README.txt ├── msxdos.md ├── openmsx.tcl ├── src ├── 4th-blk.c ├── debug.4th ├── flash.4th ├── grp.4th ├── jed-old.4th ├── jed.4th ├── msxbios.4th ├── msxdos.4th ├── nesman.4th ├── psg.4th ├── rnd.4th ├── shift.4th ├── v9990.4th ├── vgr1.4th ├── vt52.4th └── vtx1.4th ├── tests ├── t-debug.4th ├── t-delay.4th ├── t-grp.4th ├── t-msxdos.4th ├── t-psg.4th ├── t-rnd.4th ├── t-shift.4th ├── t-v9990.4th ├── t-vgr.4th ├── t-vtx.4th └── test.tcl ├── v9990.md ├── win-compile.bat └── win-run.bat /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /blkfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/blkfiles -------------------------------------------------------------------------------- /compile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/compile.tcl -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/dist/.gitignore -------------------------------------------------------------------------------- /dsk/AUTOEXEC.BA2: -------------------------------------------------------------------------------- 1 | mode 80 2 | f83msx 3 |  -------------------------------------------------------------------------------- /dsk/AUTOEXEC.BAT: -------------------------------------------------------------------------------- 1 | MODE 80 2 | ECHO BOOT COMPLETED 3 | -------------------------------------------------------------------------------- /dsk/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/dsk/README.txt -------------------------------------------------------------------------------- /msxdos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/msxdos.md -------------------------------------------------------------------------------- /openmsx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/openmsx.tcl -------------------------------------------------------------------------------- /src/4th-blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/4th-blk.c -------------------------------------------------------------------------------- /src/debug.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/debug.4th -------------------------------------------------------------------------------- /src/flash.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/flash.4th -------------------------------------------------------------------------------- /src/grp.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/grp.4th -------------------------------------------------------------------------------- /src/jed-old.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/jed-old.4th -------------------------------------------------------------------------------- /src/jed.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/jed.4th -------------------------------------------------------------------------------- /src/msxbios.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/msxbios.4th -------------------------------------------------------------------------------- /src/msxdos.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/msxdos.4th -------------------------------------------------------------------------------- /src/nesman.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/nesman.4th -------------------------------------------------------------------------------- /src/psg.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/psg.4th -------------------------------------------------------------------------------- /src/rnd.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/rnd.4th -------------------------------------------------------------------------------- /src/shift.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/shift.4th -------------------------------------------------------------------------------- /src/v9990.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/v9990.4th -------------------------------------------------------------------------------- /src/vgr1.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/vgr1.4th -------------------------------------------------------------------------------- /src/vt52.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/vt52.4th -------------------------------------------------------------------------------- /src/vtx1.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/src/vtx1.4th -------------------------------------------------------------------------------- /tests/t-debug.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-debug.4th -------------------------------------------------------------------------------- /tests/t-delay.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-delay.4th -------------------------------------------------------------------------------- /tests/t-grp.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-grp.4th -------------------------------------------------------------------------------- /tests/t-msxdos.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-msxdos.4th -------------------------------------------------------------------------------- /tests/t-psg.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-psg.4th -------------------------------------------------------------------------------- /tests/t-rnd.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-rnd.4th -------------------------------------------------------------------------------- /tests/t-shift.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-shift.4th -------------------------------------------------------------------------------- /tests/t-v9990.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-v9990.4th -------------------------------------------------------------------------------- /tests/t-vgr.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-vgr.4th -------------------------------------------------------------------------------- /tests/t-vtx.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/t-vtx.4th -------------------------------------------------------------------------------- /tests/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/tests/test.tcl -------------------------------------------------------------------------------- /v9990.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/v9990.md -------------------------------------------------------------------------------- /win-compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/win-compile.bat -------------------------------------------------------------------------------- /win-run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaite/msx-forth83/HEAD/win-run.bat --------------------------------------------------------------------------------