Skip to content
Snippets Groups Projects
Commit c25e00b5 authored by Zachary T Welch's avatar Zachary T Welch
Browse files

arm_load_store_multiple_instr_t -> struct arm_load_store_multiple_instr

Remove misleading typedef and redundant suffix from struct arm_load_store_multiple_instr.
parent 7de3c443
Branches
No related tags found
No related merge requests found
...@@ -170,14 +170,14 @@ struct arm_load_store_instr ...@@ -170,14 +170,14 @@ struct arm_load_store_instr
} offset; } offset;
}; };
typedef struct arm_load_store_multiple_instr_s struct arm_load_store_multiple_instr
{ {
uint8_t Rn; uint8_t Rn;
uint32_t register_list; uint32_t register_list;
uint8_t addressing_mode; /* 0: IA, 1: IB, 2: DA, 3: DB */ uint8_t addressing_mode; /* 0: IA, 1: IB, 2: DA, 3: DB */
uint8_t S; uint8_t S;
uint8_t W; uint8_t W;
} arm_load_store_multiple_instr_t; };
typedef struct arm_instruction_s typedef struct arm_instruction_s
{ {
...@@ -192,7 +192,7 @@ typedef struct arm_instruction_s ...@@ -192,7 +192,7 @@ typedef struct arm_instruction_s
struct arm_b_bl_bx_blx_instr b_bl_bx_blx; struct arm_b_bl_bx_blx_instr b_bl_bx_blx;
struct arm_data_proc_instr data_proc; struct arm_data_proc_instr data_proc;
struct arm_load_store_instr load_store; struct arm_load_store_instr load_store;
arm_load_store_multiple_instr_t load_store_multiple; struct arm_load_store_multiple_instr load_store_multiple;
} info; } info;
} arm_instruction_t; } arm_instruction_t;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment