├── LICENCE ├── README.md ├── docs ├── changelog.txt ├── licence.txt └── readme.txt ├── lib_source ├── data │ └── text.asm ├── formats │ ├── f_binary.asm │ ├── f_cas.asm │ ├── f_com.asm │ └── f_rom.asm ├── ngn │ ├── ngn.asm │ ├── ngn_background.asm │ ├── ngn_consts.asm │ ├── ngn_keyboard.asm │ ├── ngn_math.asm │ ├── ngn_psg.asm │ ├── ngn_rle.asm │ ├── ngn_screen.asm │ ├── ngn_sprite.asm │ ├── ngn_start.asm │ ├── ngn_system.asm │ ├── ngn_text.asm │ └── ngn_vars.asm ├── ngn_template.asm └── prog │ └── main.asm └── tools_source ├── ngn_msx_sprites ├── NGN_MSX_Sprites.cbp └── source │ ├── bmp.c │ ├── bmp.h │ ├── defines.c │ ├── defines.h │ ├── filesystem.c │ ├── filesystem.h │ ├── main.c │ ├── tiles.c │ └── tiles.h └── ngn_msx_tiles ├── NGN_MSX_Tiles.cbp └── source ├── bmp.c ├── bmp.h ├── defines.c ├── defines.h ├── filesystem.c ├── filesystem.h ├── main.c ├── rle.c ├── rle.h ├── tilemap.c └── tilemap.h /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/README.md -------------------------------------------------------------------------------- /docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/docs/changelog.txt -------------------------------------------------------------------------------- /docs/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/docs/licence.txt -------------------------------------------------------------------------------- /docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/docs/readme.txt -------------------------------------------------------------------------------- /lib_source/data/text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/data/text.asm -------------------------------------------------------------------------------- /lib_source/formats/f_binary.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/formats/f_binary.asm -------------------------------------------------------------------------------- /lib_source/formats/f_cas.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/formats/f_cas.asm -------------------------------------------------------------------------------- /lib_source/formats/f_com.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/formats/f_com.asm -------------------------------------------------------------------------------- /lib_source/formats/f_rom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/formats/f_rom.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_background.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_background.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_consts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_consts.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_keyboard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_keyboard.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_math.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_psg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_psg.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_rle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_rle.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_screen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_screen.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_sprite.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_sprite.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_start.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_system.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_system.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_text.asm -------------------------------------------------------------------------------- /lib_source/ngn/ngn_vars.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn/ngn_vars.asm -------------------------------------------------------------------------------- /lib_source/ngn_template.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/ngn_template.asm -------------------------------------------------------------------------------- /lib_source/prog/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/lib_source/prog/main.asm -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/NGN_MSX_Sprites.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/NGN_MSX_Sprites.cbp -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/bmp.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/bmp.h -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/defines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/defines.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/defines.h -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/filesystem.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/filesystem.h -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/main.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/tiles.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_sprites/source/tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_sprites/source/tiles.h -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/NGN_MSX_Tiles.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/NGN_MSX_Tiles.cbp -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/bmp.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/bmp.h -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/defines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/defines.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/defines.h -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/filesystem.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/filesystem.h -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/main.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/rle.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/rle.h -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/tilemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/tilemap.c -------------------------------------------------------------------------------- /tools_source/ngn_msx_tiles/source/tilemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/msx_ngine/HEAD/tools_source/ngn_msx_tiles/source/tilemap.h --------------------------------------------------------------------------------