forked from Mirror/GodMode9
* Embed the VRAM tar data in the ARM9 executable * Fix Makefile dependency order * Use address difference instead of absolute word for the VRAM drive limit
9 lines
142 B
ArmAsm
9 lines
142 B
ArmAsm
.section .rodata.vram_data
|
|
|
|
.align 2
|
|
.global vram_data
|
|
vram_data:
|
|
.incbin "../output/vram0.tar"
|
|
.global vram_data_end
|
|
vram_data_end:
|