Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
60 lines (50 sloc)
1.04 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .global tileset | |
| .global maps | |
| .global main_menu | |
| .global game_over_scr | |
| .global def_cons_map | |
| tileset: | |
| .incbin "data/tileset.png-pal.bin" | |
| .incbin "data/tileset.png-pix.bin" | |
| main_menu: | |
| .incbin "maps/main_menu.bin" | |
| game_over_scr: | |
| .incbin "maps/gameover.bin" | |
| def_cons_map: | |
| .incbin "maps/editor.bin" | |
| maps: | |
| .incbin "maps/0.bin" | |
| .incbin "maps/1.bin" | |
| .incbin "maps/2.bin" | |
| .incbin "maps/3.bin" | |
| .incbin "maps/4.bin" | |
| .incbin "maps/5.bin" | |
| .incbin "maps/6.bin" | |
| .incbin "maps/7.bin" | |
| .incbin "maps/8.bin" | |
| .incbin "maps/9.bin" | |
| .incbin "maps/10.bin" | |
| .incbin "maps/11.bin" | |
| .incbin "maps/12.bin" | |
| .incbin "maps/13.bin" | |
| .incbin "maps/14.bin" | |
| .incbin "maps/15.bin" | |
| .incbin "maps/16.bin" | |
| .incbin "maps/17.bin" | |
| .incbin "maps/18.bin" | |
| .incbin "maps/19.bin" | |
| .incbin "maps/20.bin" | |
| .incbin "maps/21.bin" | |
| .incbin "maps/22.bin" | |
| .incbin "maps/23.bin" | |
| .incbin "maps/24.bin" | |
| .incbin "maps/25.bin" | |
| .incbin "maps/26.bin" | |
| .incbin "maps/27.bin" | |
| .incbin "maps/28.bin" | |
| .incbin "maps/29.bin" | |
| .incbin "maps/30.bin" | |
| .incbin "maps/31.bin" | |
| .incbin "maps/32.bin" | |
| .incbin "maps/33.bin" | |
| .incbin "maps/34.bin" | |