diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-10-13 15:49:44 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-10-13 15:49:44 -0500 |
commit | c4fc85ce9e843e419ef9e3c1c2f888529c7e40d8 (patch) | |
tree | 36f91072a7471ea189132feffddc888a0c0cb937 /data | |
parent | 10896eccf02894afd3ab1b164280c892bdf7ec49 (diff) |
Add graphics capabilities
Diffstat (limited to 'data')
-rwxr-xr-x | data/rom.s | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/data/rom.s b/data/rom.s new file mode 100755 index 0000000..3c08e6b --- /dev/null +++ b/data/rom.s @@ -0,0 +1,15 @@ + .section .rodata + +.incbin "baserom.gba", 0x55A68, 0x7A0C0 - 0x55A68 + +gIntroCopyright_Gfx:: @ 0x0807A0C0 + .incbin "graphics/intro/copyright.4bpp" + +.incbin "baserom.gba", 0x7A8C0, 0x20 + +gIntroCopyright_Pal:: @ 0x0807A8E0 + .incbin "graphics/intro/copyright.gbapal" + +.incbin "baserom.gba", 0x7AAE0, 0x6BBFD0 - 0x7AAE0 + +@ rom end 0x6BBFD0 |