diff options
Diffstat (limited to 'lib/ultralib/src/error/errorasm.s')
| -rw-r--r-- | lib/ultralib/src/error/errorasm.s | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/ultralib/src/error/errorasm.s b/lib/ultralib/src/error/errorasm.s index 10f3561..c41cf6d 100644 --- a/lib/ultralib/src/error/errorasm.s +++ b/lib/ultralib/src/error/errorasm.s @@ -7,23 +7,23 @@ LEAF(__osError) #if BUILD_VERSION < VERSION_J - lw t0,__osErrorHandler - beqz t0,1f + lw t0, __osErrorHandler + beqz t0, 1f jr t0 #elif BUILD_VERSION < VERSION_K - lw t0,__kmc_pt_mode - bnez t0,_kmc_mode + lw t0, __kmc_pt_mode + bnez t0, _kmc_mode - lw t0,__osErrorHandler - beqz t0,1f + lw t0, __osErrorHandler + beqz t0, 1f jr t0 _kmc_mode: - lw t0,__kmcErrorHandler - beqz t0,1f + lw t0, __kmcErrorHandler + beqz t0, 1f jr t0 #else - lw t0,__osCommonHandler - beqz t0,1f + lw t0, __osCommonHandler + beqz t0, 1f jr t0 #endif 1: |
