Lluís Vilanova | 0c6940d | 2016-02-01 19:38:47 +0100 | [diff] [blame] | 1 | #ifndef TARGET_SYSCALL_H |
2 | #define TARGET_SYSCALL_H | ||||
3 | |||||
blueswir1 | 5393906 | 2008-11-09 09:31:37 +0000 | [diff] [blame] | 4 | struct 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 Vilanova | 0c6940d | 2016-02-01 19:38:47 +0100 | [diff] [blame] | 13 | |
Markus Armbruster | 175de52 | 2016-06-29 15:29:06 +0200 | [diff] [blame] | 14 | #endif /* TARGET_SYSCALL_H */ |