master
h 17 lines 355 Bytes
Raw
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 #ifndef MIPS_TARGET_PTRACE_H
4 #define MIPS_TARGET_PTRACE_H
5
6 struct target_pt_regs {
7 abi_ulong pad0[6];
8 abi_ulong regs[32];
9 abi_ulong lo;
10 abi_ulong hi;
11 abi_ulong cp0_epc;
12 abi_ulong cp0_badvaddr;
13 abi_ulong cp0_status;
14 abi_ulong cp0_cause;
15 };
16
17 #endif /* MIPS_TARGET_PTRACE_H */