2016-02-01 21:38:47 +03:00
|
|
|
#ifndef TARGET_SYSCALL_H
|
|
|
|
#define TARGET_SYSCALL_H
|
|
|
|
|
2008-11-09 12:31:37 +03: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 21:38:47 +03:00
|
|
|
|
2016-06-29 16:29:06 +03:00
|
|
|
#endif /* TARGET_SYSCALL_H */
|