diff --git a/arm9/source/arm9_exception_handlers_asm.s b/arm9/source/arm9_exception_handlers_asm.s index 4d4f17b..4ab622e 100644 --- a/arm9/source/arm9_exception_handlers_asm.s +++ b/arm9/source/arm9_exception_handlers_asm.s @@ -158,11 +158,11 @@ arm9ExceptionHandlerAddressTable: .word prefetchAbortHandler @ Prefetch abort .word dataAbortHandler @ Data abort -.section .arm9_exception_handlers.bss, "w", %nobits +.section .arm9_exception_handlers.bss, "aw", %nobits .align 4 .global arm9ExceptionHandlerSvcBreakAddress arm9ExceptionHandlerSvcBreakAddress: - .word 0 + .skip 4 _regs: .skip (4 * 17) diff --git a/k11_extension/source/fatalExceptionHandlers.s b/k11_extension/source/fatalExceptionHandlers.s index c90c01d..ec4ddec 100644 --- a/k11_extension/source/fatalExceptionHandlers.s +++ b/k11_extension/source/fatalExceptionHandlers.s @@ -251,4 +251,4 @@ dataAbortHandler: .bss .balign 4 _regs: .skip (4 * 23) -_fatalExceptionOccured: .word 0 +_fatalExceptionOccured: .skip 4 diff --git a/k11_extension/source/utils.s b/k11_extension/source/utils.s index 0351265..fef568d 100644 --- a/k11_extension/source/utils.s +++ b/k11_extension/source/utils.s @@ -127,7 +127,7 @@ safecpy_sz: .word _safecpy_end - safecpy .balign 4 .global SGI0Handler -SGI0Handler: .word 0 @ see synchronization.c +SGI0Handler: .skip 4 @ see synchronization.c .balign 4 diff --git a/sysmodules/Makefile b/sysmodules/Makefile index 463c49e..162ce69 100644 --- a/sysmodules/Makefile +++ b/sysmodules/Makefile @@ -6,7 +6,7 @@ CXIS := $(foreach dir, $(SUBFOLDERS), $(dir)/$(dir).cxi) all: sysmodules.bin clean: - @$(foreach dir, $(SUBFOLDERS), make -C $(dir) clean &&) true + @$(foreach dir, $(SUBFOLDERS), $(MAKE) -C $(dir) clean &&) true @rm -rf sysmodules.bin sysmodules.bin: $(SUBFOLDERS)