blob: dfdf9f82f5f5de76b401263cab6b45df243cd771 [file] [log] [blame]
Lluís Vilanova0c6940d2016-02-01 19:38:47 +01001#ifndef TARGET_SYSCALL_H
2#define TARGET_SYSCALL_H
3
blueswir153939062008-11-09 09:31:37 +00004struct target_pt_regs {
5 abi_ulong psr;
6 abi_ulong pc;
7 abi_ulong npc;
8 abi_ulong y;
9 abi_ulong u_regs[16];
10};
11
12#define UNAME_MACHINE "sun4"
Lluís Vilanova0c6940d2016-02-01 19:38:47 +010013
Markus Armbruster175de522016-06-29 15:29:06 +020014#endif /* TARGET_SYSCALL_H */