diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-08 19:36:30 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-08 19:36:30 +0000 |
commit | f6e6fb88c345063c8cc38375e2fce3277c1523fa (patch) | |
tree | e8a209c67c63015c2689b0168bb90251feafc79d | |
parent | b19ccf0ec89bf04fbede05d06c9dd01c0057dbc6 (diff) |
OR r13, not r9 to match SYS.h; fixes syscall(2) on mvme88k; OK miod@
-rw-r--r-- | lib/libc/arch/m88k/sys/syscall.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/arch/m88k/sys/syscall.S b/lib/libc/arch/m88k/sys/syscall.S index f95b7986731..446d6835d71 100644 --- a/lib/libc/arch/m88k/sys/syscall.S +++ b/lib/libc/arch/m88k/sys/syscall.S @@ -1,4 +1,4 @@ -/* $OpenBSD: syscall.S,v 1.6 2003/06/02 20:18:31 millert Exp $ */ +/* $OpenBSD: syscall.S,v 1.7 2003/12/08 19:36:29 millert Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -35,7 +35,7 @@ #if defined(LIBC_SCCS) .data - .string "$OpenBSD: syscall.S,v 1.6 2003/06/02 20:18:31 millert Exp $" + .string "$OpenBSD: syscall.S,v 1.7 2003/12/08 19:36:29 millert Exp $" #endif /* LIBC_SCCS */ #include "SYS.h" @@ -44,7 +44,7 @@ SYSENTRY(syscall) ld r10,r31,32 ld r11,r31,36 ld r12,r31,40 - or r9,r0,0 + or r13,r0,0 tb0 0,r0,128 br __cerror jmp r1 |