├── .gitignore ├── LICENSE.txt ├── Makefile ├── asm6f.c ├── changelog.txt ├── patches ├── asm6-fceuxnl.diff ├── asm6-undoc.diff └── readme.txt ├── readme-original.txt ├── readme.txt └── test_cases ├── incbin ├── filename with spaces.bin ├── filename.bin └── incbin.asm └── tablemac ├── expected.bin └── tablemac.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/Makefile -------------------------------------------------------------------------------- /asm6f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/asm6f.c -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/changelog.txt -------------------------------------------------------------------------------- /patches/asm6-fceuxnl.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/patches/asm6-fceuxnl.diff -------------------------------------------------------------------------------- /patches/asm6-undoc.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/patches/asm6-undoc.diff -------------------------------------------------------------------------------- /patches/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/patches/readme.txt -------------------------------------------------------------------------------- /readme-original.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/readme-original.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/readme.txt -------------------------------------------------------------------------------- /test_cases/incbin/filename with spaces.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/test_cases/incbin/filename with spaces.bin -------------------------------------------------------------------------------- /test_cases/incbin/filename.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/test_cases/incbin/filename.bin -------------------------------------------------------------------------------- /test_cases/incbin/incbin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/test_cases/incbin/incbin.asm -------------------------------------------------------------------------------- /test_cases/tablemac/expected.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test_cases/tablemac/tablemac.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freem/asm6f/HEAD/test_cases/tablemac/tablemac.asm --------------------------------------------------------------------------------