diff options
Diffstat (limited to 'src/arch/mips')
| -rw-r--r-- | src/arch/mips/instruction.c | 4 | ||||
| -rw-r--r-- | src/arch/mips/operand.c | 12 | 
2 files changed, 8 insertions, 8 deletions
| diff --git a/src/arch/mips/instruction.c b/src/arch/mips/instruction.c index 54999a1..fd39d5c 100644 --- a/src/arch/mips/instruction.c +++ b/src/arch/mips/instruction.c @@ -126,7 +126,7 @@ static mips_instruction _instructions[MOP_COUNT] = {  /* Traduit une instruction en version humainement lisible. */ -static const char *mips_get_instruction_text(const GMipsInstruction *, const exe_format *, AsmSyntax); +static const char *mips_get_instruction_text(const GMipsInstruction *, const GExeFormat *, AsmSyntax); @@ -274,7 +274,7 @@ MipsOpcodes mips_guess_next_instruction(const bin_t *data, off_t pos, off_t len)  *                                                                             *  ******************************************************************************/ -static const char *mips_get_instruction_text(const GMipsInstruction *instr, const exe_format *format, AsmSyntax syntax) +static const char *mips_get_instruction_text(const GMipsInstruction *instr, const GExeFormat *format, AsmSyntax syntax)  {      const char *result;                     /* Chaîne à retourner          */ diff --git a/src/arch/mips/operand.c b/src/arch/mips/operand.c index 68599a4..4021cf6 100644 --- a/src/arch/mips/operand.c +++ b/src/arch/mips/operand.c @@ -89,7 +89,7 @@ static void g_mips_register_operand_class_init(GMipsRegisterOperandClass *);  static void g_mips_register_operand_init(GMipsRegisterOperand *);  /* Traduit un opérande en version humainement lisible. */ -static char *g_mips_register_operand_get_text(const GMipsRegisterOperand *, const exe_format *, AsmSyntax); +static char *g_mips_register_operand_get_text(const GMipsRegisterOperand *, const GExeFormat *, AsmSyntax); @@ -122,7 +122,7 @@ static void g_mips_mem_content_operand_class_init(GMipsMemContentOperandClass *)  static void g_mips_mem_content_operand_init(GMipsMemContentOperand *);  /* Traduit un opérande en version humainement lisible. */ -static char *g_mips_mem_content_operand_get_text(const GMipsMemContentOperand *, const exe_format *, AsmSyntax); +static char *g_mips_mem_content_operand_get_text(const GMipsMemContentOperand *, const GExeFormat *, AsmSyntax); @@ -154,7 +154,7 @@ static void g_mips_offset_operand_class_init(GMipsOffsetOperandClass *);  static void g_mips_offset_operand_init(GMipsOffsetOperand *);  /* Traduit un opérande en version humainement lisible. */ -static char *g_mips_offset_operand_get_text(const GMipsOffsetOperand *, const exe_format *, AsmSyntax); +static char *g_mips_offset_operand_get_text(const GMipsOffsetOperand *, const GExeFormat *, AsmSyntax); @@ -301,7 +301,7 @@ GArchOperand *g_mips_register_operand_new(bin_t index)  *                                                                             *  ******************************************************************************/ -static char *g_mips_register_operand_get_text(const GMipsRegisterOperand *operand, const exe_format *format, AsmSyntax syntax) +static char *g_mips_register_operand_get_text(const GMipsRegisterOperand *operand, const GExeFormat *format, AsmSyntax syntax)  {      char *result;                           /* Chaîne à retourner          */ @@ -431,7 +431,7 @@ GArchOperand *g_mips_mem_content_operand_new(bin_t index, int16_t offset)  *                                                                             *  ******************************************************************************/ -static char *g_mips_mem_content_operand_get_text(const GMipsMemContentOperand *operand, const exe_format *format, AsmSyntax syntax) +static char *g_mips_mem_content_operand_get_text(const GMipsMemContentOperand *operand, const GExeFormat *format, AsmSyntax syntax)  {      char *result;                           /* Chaîne à retourner          */      char *tmp;                              /* Déplacement                 */ @@ -544,7 +544,7 @@ GArchOperand *g_mips_offset_operand_new(int16_t offset)  *                                                                             *  ******************************************************************************/ -static char *g_mips_offset_operand_get_text(const GMipsOffsetOperand *operand, const exe_format *format, AsmSyntax syntax) +static char *g_mips_offset_operand_get_text(const GMipsOffsetOperand *operand, const GExeFormat *format, AsmSyntax syntax)  {      return g_arch_operand_get_text(G_ARCH_OPERAND(operand->offset), format, syntax); | 
