* simops.c: Include correct syscall.h for d10v, not host's.

Fix #ifdef SYS_stat.
This commit is contained in:
Mark Alexander 1996-09-04 11:51:06 +00:00
parent e73b6ae634
commit 8719be26c4
2 changed files with 19 additions and 4 deletions

View 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.

View 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;
}