diff options
Diffstat (limited to 'arm9/asm/NNS_GFD_gfd_texvramman.s')
-rw-r--r-- | arm9/asm/NNS_GFD_gfd_texvramman.s | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/arm9/asm/NNS_GFD_gfd_texvramman.s b/arm9/asm/NNS_GFD_gfd_texvramman.s new file mode 100644 index 00000000..d2f6c88f --- /dev/null +++ b/arm9/asm/NNS_GFD_gfd_texvramman.s @@ -0,0 +1,26 @@ + .include "asm/macros.inc" + .include "global.inc" + + .section .data + + .global NNS_GfdDefaultFuncAllocTexVram +NNS_GfdDefaultFuncAllocTexVram: ; 0x021064B8 + .word AllocTexVram_ + + .global NNS_GfdDefaultFuncFreeTexVram +NNS_GfdDefaultFuncFreeTexVram: ; 0x021064BC + .word FreeTexVram_ + + .section .text + + arm_func_start FreeTexVram_ +FreeTexVram_: ; 0x020AE8AC + mvn r0, #0x0 + bx lr + arm_func_end FreeTexVram_ + + arm_func_start AllocTexVram_ +AllocTexVram_: ; 0x020AE8B4 + mov r0, #0x0 + bx lr + arm_func_end AllocTexVram_ |