2016-02-01 19:38:47 +01:00
|
|
|
#ifndef TARGET_SYSCALL_H
|
|
|
|
#define TARGET_SYSCALL_H
|
|
|
|
|
2008-11-09 10:31:37 +01:00
|
|
|
struct target_pt_regs {
|
|
|
|
abi_ulong psr;
|
|
|
|
abi_ulong pc;
|
|
|
|
abi_ulong npc;
|
|
|
|
abi_ulong y;
|
|
|
|
abi_ulong u_regs[16];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define UNAME_MACHINE "sun4"
|
2016-02-01 19:38:47 +01:00
|
|
|
|
2016-06-29 15:29:06 +02:00
|
|
|
#endif /* TARGET_SYSCALL_H */
|