]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* simops.c: Include correct syscall.h for d10v, not host's.
authorMark Alexander <marka@cygnus>
Wed, 4 Sep 1996 11:51:06 +0000 (11:51 +0000)
committerMark Alexander <marka@cygnus>
Wed, 4 Sep 1996 11:51:06 +0000 (11:51 +0000)
Fix #ifdef SYS_stat.

sim/d10v/ChangeLog
sim/d10v/simops.c

index a1c8f4e79614b930855068430bbf36d8a3d83325..cef139399124997edffa8fe29d8aed0ed8e7d10f 100644 (file)
@@ -1,3 +1,18 @@
+Wed Sep 04 04:45:34 1996  Mark Alexander  <marka@cygnus.com>
+
+       * simops.c: Include correct syscall.h for d10v, not host's.
+       Fix #ifdef SYS_stat.
+
+Tue Sep  3 14:00:04 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
+
+       * simops.c (OP_5F00): Wrap all SYS_xxx traps with #ifdef.
+       Add trap 2 to be printf and trap 3 to be putchar.
+
+Wed Aug 28 21:42:34 1996  Mark Alexander  <marka@cygnus.com>
+
+       * Makefile.in, d10v_sim.h, interp.c, simops.c: Add support
+       for low-level system calls.
+
 Wed Aug 28 17:33:19 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
 
        * Makefile.in, d10v_sim.h, interp.c: Fix byte-order problems.
index 2c825a5f259715d88cd6e9117033bc10f8d88626..3add77c95c6c7dae1e0177e7082e083e67627356 100644 (file)
@@ -6,7 +6,7 @@
 
 #include "d10v_sim.h"
 #include "simops.h"
-#include "syscall.h"
+#include "sys/syscall.h"
 
 /* #define DEBUG 1 */
 
@@ -2259,8 +2259,8 @@ OP_5F00 ()
            break;
 #endif
 
-#ifdef SYS_stat:       /* added at hmsi *
-                          case SYS_stat:       /* added at hmsi */
+#ifdef SYS_stat
+         case SYS_stat:
            /* stat system call */
            {
              struct stat host_stat;
@@ -2325,7 +2325,7 @@ OP_5F00 ()
       /* Trap 2 calls printf */
       {
        char *fstr = State.regs[2] + State.imem;
-       printf (fstr,State.regs[3],State.regs[4],State.regs[5]);
+       printf (fstr, (short)State.regs[3], (short)State.regs[4], (short)State.regs[5]);
        break;
       }