target_syscall.h 223 B

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