mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-05 04:56:10 +00:00
Init bitshift upon creation
This commit is contained in:
parent
fa576bbb9a
commit
00be0a19d3
@ -145,6 +145,7 @@ R_API RAsm *r_asm_new() {
|
||||
}
|
||||
a->dataalign = 1;
|
||||
a->bits = R_SYS_BITS;
|
||||
a->bitshift = 0;
|
||||
a->syntax = R_ASM_SYNTAX_INTEL;
|
||||
a->plugins = r_list_newf ((RListFree)plugin_free);
|
||||
if (!a->plugins) {
|
||||
|
@ -616,6 +616,7 @@ typedef struct r_anal_t {
|
||||
int trace;
|
||||
int esil_goto_limit;
|
||||
int pcalign;
|
||||
int bitshift;
|
||||
RList *types;
|
||||
//struct r_anal_ctx_t *ctx;
|
||||
struct r_anal_esil_t *esil;
|
||||
|
Loading…
x
Reference in New Issue
Block a user