Browse Source

Hack the 68000 last ditch abort to work for all 68000 targets.

David McCullough 22 years ago
parent
commit
ff250619f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/stdlib/abort.c

+ 1 - 1
libc/stdlib/abort.c

@@ -33,7 +33,7 @@ Cambridge, MA 02139, USA.  */
 #elif defined(__ia64__)
 #define ABORT_INSTRUCTION asm ("break 0")
 #elif defined(__mc68000__)
-#define ABORT_INSTRUCTION asm ("illegal")
+#define ABORT_INSTRUCTION asm (".long 0xffffffff")
 #elif defined(__mips__)
 #define ABORT_INSTRUCTION asm ("break 255")
 #elif defined(__s390__)