update from main archive 970226
[glibc/history.git] / sysdeps / mach / mips / syscall.S
blobbf56b401ddf5430ffbd184238722bfc0ee39a642
1 /* Copyright (C) 1994 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA.  */
19 #include <sysdep.h>
21 ENTRY (syscall)
22         .frame  sp,0,ra
23         move    v0, a0          /* Load system call number from first arg.  */
24         move    a0, a1          /* Move the next three args up a register.  */
25         move    a1, a2
26         move    a2, a3
27         /* Load the remaining possible args (up to 11) from the stack.  */
28         lw      t0,16(sp)
29         lw      t1,20(sp)
30         lw      t2,24(sp)
31         lw      t3,28(sp)
32         lw      t4,32(sp)
33         lw      t5,36(sp)
34         lw      t6,40(sp)
35         syscall                 /* Do the system call.  */
36         j ra                    /* Return to caller.  */
37         .end    syscall