From d1685379681008d41f78fa4a6ae17ace5ee2dbfa Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Wed, 23 Jun 2021 17:35:37 -0500 Subject: Finish out game options and FatalError Some data cleanup as well. Thanks pika for the noreturn tip for FatalError. --- asm/debug.s | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 asm/debug.s (limited to 'asm/debug.s') diff --git a/asm/debug.s b/asm/debug.s deleted file mode 100644 index e0f194d..0000000 --- a/asm/debug.s +++ /dev/null @@ -1,30 +0,0 @@ - .include "constants/gba_constants.inc" - .include "asm/macros.inc" - - .syntax unified - - .text - - thumb_func_start FatalError -FatalError: - push {r1-r3} - push {r4,lr} - sub sp, 0x100 - adds r1, r0, 0 - ldr r4, [sp, 0x108] - ldr r0, _08011C14 - bl FatalErrorPrintFuncFileLine - add r2, sp, 0x10C - mov r0, sp - adds r1, r4, 0 - bl vsprintf - ldr r0, _08011C18 - mov r1, sp - bl FatalErrorFormatMessage - bl FatalErrorHang - .align 2, 0 -_08011C14: .4byte gFatalText -_08011C18: .4byte gUnknown_80D42D4 - thumb_func_end FatalError - - .align 2,0 -- cgit v1.2.3