├── .gitignore ├── LICENSE ├── README.md └── original ├── INSTALL.COM ├── bin └── MSA.COM ├── bin8086 └── msa.com ├── doc ├── doc.rtf ├── doc.txt └── latest.txt ├── examples ├── FYR.ASM ├── PASSWORD.ASM ├── STAR.ASM ├── miced.asm └── snow.asm └── src ├── BUILD.BAT ├── assemblr.c ├── assemblr.h ├── ibuild.bat ├── install.c ├── misc.c ├── msa.c └── tables.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/README.md -------------------------------------------------------------------------------- /original/INSTALL.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/INSTALL.COM -------------------------------------------------------------------------------- /original/bin/MSA.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/bin/MSA.COM -------------------------------------------------------------------------------- /original/bin8086/msa.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/bin8086/msa.com -------------------------------------------------------------------------------- /original/doc/doc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/doc/doc.rtf -------------------------------------------------------------------------------- /original/doc/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/doc/doc.txt -------------------------------------------------------------------------------- /original/doc/latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/doc/latest.txt -------------------------------------------------------------------------------- /original/examples/FYR.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/examples/FYR.ASM -------------------------------------------------------------------------------- /original/examples/PASSWORD.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/examples/PASSWORD.ASM -------------------------------------------------------------------------------- /original/examples/STAR.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/examples/STAR.ASM -------------------------------------------------------------------------------- /original/examples/miced.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/examples/miced.asm -------------------------------------------------------------------------------- /original/examples/snow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/examples/snow.asm -------------------------------------------------------------------------------- /original/src/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/src/BUILD.BAT -------------------------------------------------------------------------------- /original/src/assemblr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/src/assemblr.c -------------------------------------------------------------------------------- /original/src/assemblr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/src/assemblr.h -------------------------------------------------------------------------------- /original/src/ibuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/src/ibuild.bat -------------------------------------------------------------------------------- /original/src/install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/src/install.c -------------------------------------------------------------------------------- /original/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/src/misc.c -------------------------------------------------------------------------------- /original/src/msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/src/msa.c -------------------------------------------------------------------------------- /original/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertostling/msa/HEAD/original/src/tables.h --------------------------------------------------------------------------------