diff options
Diffstat (limited to 'src/arch/instruction.c')
-rw-r--r-- | src/arch/instruction.c | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/arch/instruction.c b/src/arch/instruction.c index be049e1..7df72bf 100644 --- a/src/arch/instruction.c +++ b/src/arch/instruction.c @@ -145,8 +145,6 @@ static void g_arch_instruction_class_init(GArchInstructionClass *klass) static void g_arch_instruction_init(GArchInstruction *instr) { - instr->max_displayed_len = VMPA_NO_PHYSICAL; - instr->from_count = 0; instr->to_count = 0; @@ -1006,45 +1004,6 @@ const char *g_arch_instruction_get_keyword(GArchInstruction *instr, AsmSyntax sy } -/****************************************************************************** -* * -* Paramètres : instr = instruction d'assemblage à consulter. * -* * -* Description : Indique si elle existe la quantité maximale de code affiché. * -* * -* Retour : Quantité de code affichée au plus ou VMPA_NO_PHYSICAL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -phys_t g_arch_instruction_get_displayed_max_length(const GArchInstruction *instr) -{ - return instr->max_displayed_len; - -} - - -/****************************************************************************** -* * -* Paramètres : instr = instruction d'assemblage à consulter. * -* max = quantité affichée au plus ou VMPA_NO_PHYSICAL. * -* * -* Description : Définit la quantité maximale de code affiché. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -void g_arch_instruction_set_displayed_max_length(GArchInstruction *instr, phys_t max) -{ - instr->max_displayed_len = max; - -} - - /* ---------------------------------------------------------------------------------- */ /* OFFRE DE CAPACITES DE GENERATION */ |