* Move binrz meson directives to binrz/ dir * Move rizin-shell-parser to a subproject * Move bochs to a meson subproject * Move rzqnx to meson subproject * Move winkd to a meson subproject * Move rzar to a meson subproject * Move rzw32dbg_wrap to a meson subproject * Move ptrace-wrap to a meson subproject * Move rzgdb to a meson subproject * Rename w32dbg_wrap to rzw32dbg_wrap * Update CODEOWNERS * Remove old references to shlr * Move shlr/heap stuff in core and remove shlr/arm * Move spp to a meson subproject * Remove last references to shlr * Remove use_webui option * Move include files directives to librz/include/meson.build * Move librz meson directives into librz/meson.build * Handle d/ directories inside the specific module meson.build * Move plugins listing to specific module meson.build * Move rzheap to its own subproject * Fix js linter and licenses * Use meson.override_dependency for all rz_ modules
25 lines
496 B
C
25 lines
496 B
C
// SPDX-FileCopyrightText: 2016 madprogrammer
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/*! \file */
|
|
#ifndef ARCH_H
|
|
#define ARCH_H
|
|
|
|
#include "rz_types.h"
|
|
|
|
#define ARCH_X86_64 0
|
|
#define ARCH_X86_32 1
|
|
#define ARCH_ARM_32 2
|
|
#define ARCH_ARM_64 3
|
|
|
|
/*!
|
|
* This struct defines a generic
|
|
* register view
|
|
*/
|
|
typedef struct registers_t {
|
|
char name[32]; /*! The Name of the current register */
|
|
ut64 offset; /*! Offset in the data block */
|
|
ut64 size; /*! Size of the register */
|
|
} registers_t;
|
|
|
|
#endif
|