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