mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-29 06:50:32 +00:00
* simops.c: Include correct syscall.h for d10v, not host's.
Fix #ifdef SYS_stat.
This commit is contained in:
parent
e73b6ae634
commit
8719be26c4
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user