1 /* An instruction which should crash any program is a breakpoint. */ 2 #ifdef __mips16 3 # define ABORT_INSTRUCTION asm ("break 63") 4 #else 5 # define ABORT_INSTRUCTION asm ("break 255") 6 #endif 7
1 /* An instruction which should crash any program is a breakpoint. */ 2 #ifdef __mips16 3 # define ABORT_INSTRUCTION asm ("break 63") 4 #else 5 # define ABORT_INSTRUCTION asm ("break 255") 6 #endif 7