target_syscall.h 244 B

123456789101112131415
  1. #ifndef TARGET_SYSCALL_H
  2. #define TARGET_SYSCALL_H
  3. struct target_pt_regs {
  4. abi_ulong u_regs[16];
  5. abi_ulong tstate;
  6. abi_ulong pc;
  7. abi_ulong npc;
  8. abi_ulong y;
  9. abi_ulong fprs;
  10. };
  11. #define UNAME_MACHINE "sun4u"
  12. #endif /* TARGET_SYSCALL_H */