Home | History | Annotate | Line # | Download | only in m68k
      1 /*	$NetBSD: linux_sig_machdep.S,v 1.3 1999/11/11 01:27:59 thorpej Exp $	*/
      2 
      3 /*
      4  * Written by ITOH Yasufumi.
      5  * Public domain.
      6  */
      7 
      8 #include <m68k/asm.h>
      9 #include <compat/linux/linux_syscall.h>
     10 
     11 /*
     12  * Signal "trampoline" code for Linux emulation.
     13  * The sigtramp for Linux/m68k is on the stack frame, and this is a dummy.
     14  */
     15 	.align	2
     16 GLOBAL(linux_sigcode)
     17 	moveq	#LINUX_SYS_exit,%d0	| _exit(?)
     18 	trap	#0
     19 	.align	2
     20 GLOBAL(linux_esigcode)
     21