diff options
author | red031000 <rubenru09@aol.com> | 2020-05-24 15:14:47 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-05-24 15:14:47 +0100 |
commit | c29ab952787c437b15a70a88dbb07f309a877574 (patch) | |
tree | e49187e81c3ad40578eea0cc54ceb1ec8a6d81ff /arm9/asm/OS_exception.s | |
parent | 77ebfad667ae038119b4413b87c99d0497f2d522 (diff) | |
parent | 8cfbe69596f9d3079d0098f30ea58debd5487271 (diff) |
Merge branch 'master' of https://github.com/martmists/pokediamond
Diffstat (limited to 'arm9/asm/OS_exception.s')
-rw-r--r-- | arm9/asm/OS_exception.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arm9/asm/OS_exception.s b/arm9/asm/OS_exception.s index 8a078de7..85b378d4 100644 --- a/arm9/asm/OS_exception.s +++ b/arm9/asm/OS_exception.s @@ -1,6 +1,24 @@ .include "asm/macros.inc" .include "global.inc" + .section .bss + + .global OSi_UserExceptionHandler +OSi_UserExceptionHandler: ; 0x021D371C + .space 0x4 + + .global OSi_UserExceptionHandlerArg +OSi_UserExceptionHandlerArg: ; 0x021D3720 + .space 0x4 + + .global OSi_DebuggerHandler +OSi_DebuggerHandler: ; 0x021D3724 + .space 0x4 + + .global OSi_ExContext +OSi_ExContext: ; 0x021D3728 + .space 0x80 + .text arm_func_start OSi_ExceptionHandler |