Rizin
unix-like reverse engineering framework and cli tools
regs.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: 2022 Dhruv Maroo <dhruvmaru007@gmail.com>
2 // SPDX-License-Identifier: LGPL-3.0-only
3 
4 #ifndef RZ_SH_REGS_H
5 #define RZ_SH_REGS_H
6 
10 static const char *sh_registers[] = {
11  "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
12  "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", "pc",
13  "sr", "gbr", "ssr", "spc", "sgr", "dbr", "vbr", "mach", "macl",
14  "pr", "fpul", "fpscr",
15  "fr0", "fr1", "fr2", "fr3", "fr4", "fr5", "fr6", "fr7",
16  "fr8", "fr9", "fr10", "fr11", "fr12", "fr13", "fr14", "fr15",
17  "xf0", "xf1", "xf2", "xf3", "xf4", "xf5", "xf6", "xf7",
18  "xf8", "xf9", "xf10", "xf11", "xf12", "xf13", "xf14", "xf15",
19  "r0b", "r1b", "r2b", "r3b", "r4b", "r5b", "r6b", "r7b"
20 };
21 
22 #endif // RZ_SH_REGS_H
static const char * sh_registers[]
Definition: regs.h:10