2016-02-01 21:38:47 +03:00
|
|
|
#ifndef TARGET_SYSCALL_H
|
|
|
|
#define TARGET_SYSCALL_H
|
|
|
|
|
2008-10-26 23:33:16 +03:00
|
|
|
struct target_pt_regs {
|
|
|
|
abi_ulong u_regs[16];
|
|
|
|
abi_ulong tstate;
|
|
|
|
abi_ulong pc;
|
|
|
|
abi_ulong npc;
|
|
|
|
abi_ulong y;
|
|
|
|
abi_ulong fprs;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define UNAME_MACHINE "sun4u"
|
2016-02-01 21:38:47 +03:00
|
|
|
|
2016-06-29 16:29:06 +03:00
|
|
|
#endif /* TARGET_SYSCALL_H */
|