diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index a77a66bde..e796c1b3f 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,8 +1,11 @@ +2007-05-03 Kazu Hirata + + * m68k/fido-_exit.c (_exit): Use stop #0x700. + 2007-04-27 Kazu Hirata - * libgloss/m68k/fido.sc: Catch .text.*, .rodata.*, .data.*, - .bss.*, .ctor.*, and .dtor.*. Wrap ctor/dtor-related sections - with KEEP. + * m68k/fido.sc: Catch .text.*, .rodata.*, .data.*, .bss.*, + .ctor.*, and .dtor.*. Wrap ctor/dtor-related sections with KEEP. 2007-04-04 Patrick Mansfield diff --git a/libgloss/m68k/fido-_exit.c b/libgloss/m68k/fido-_exit.c index 3f920f067..08a1542cc 100644 --- a/libgloss/m68k/fido-_exit.c +++ b/libgloss/m68k/fido-_exit.c @@ -19,5 +19,5 @@ void _exit (int code) { while (1) - asm volatile ("stop #0"); + asm volatile ("stop #0x700"); }