master
h 18 lines 370 Bytes
Raw
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 #ifndef SH4_TARGET_PTRACE_H
4 #define SH4_TARGET_PTRACE_H
5
6 /* See arch/sh/include/uapi/asm/ptrace_32.h. */
7 struct target_pt_regs {
8 abi_ulong regs[16];
9 abi_ulong pc;
10 abi_ulong pr;
11 abi_ulong sr;
12 abi_ulong gbr;
13 abi_ulong mach;
14 abi_ulong macl;
15 abi_long tra;
16 };
17
18 #endif /* SH4_TARGET_PTRACE_H */