Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
19 lines
370 B
C
19 lines
370 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#ifndef SH4_TARGET_PTRACE_H
|
|
#define SH4_TARGET_PTRACE_H
|
|
|
|
/* See arch/sh/include/uapi/asm/ptrace_32.h. */
|
|
struct target_pt_regs {
|
|
abi_ulong regs[16];
|
|
abi_ulong pc;
|
|
abi_ulong pr;
|
|
abi_ulong sr;
|
|
abi_ulong gbr;
|
|
abi_ulong mach;
|
|
abi_ulong macl;
|
|
abi_long tra;
|
|
};
|
|
|
|
#endif /* SH4_TARGET_PTRACE_H */
|