xref: /haiku/src/system/boot/platform/efi/arch/arm64/exceptions.S (revision 9e25244c5e9051f6cd333820d6332397361abd6c)
1
2#include <asm_defs.h>
3
4	.text
5
6FUNCTION(_arch_exception_loop):
7arch_loop:
8    b arch_loop
9FUNCTION_END(_arch_exception_loop)
10
11/* The intention in this function in contrast with the previous is that by
12 * prototype, the compiler sets x0 and x1 to its parameters
13 * so when attaching we can track where it came from */
14FUNCTION(_arch_exception_panic):
15arch_panic_loop:
16    b arch_panic_loop
17FUNCTION_END(_arch_exception_panic)
18