diff options
Diffstat (limited to 'src/arch/instructions')
-rw-r--r-- | src/arch/instructions/raw.c | 7 | ||||
-rw-r--r-- | src/arch/instructions/undefined.c | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/arch/instructions/raw.c b/src/arch/instructions/raw.c index 05eb886..84a79e9 100644 --- a/src/arch/instructions/raw.c +++ b/src/arch/instructions/raw.c @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * artificial.c - instructions pures vues de l'esprit + * raw.c - instructions pures vues de l'esprit * * Copyright (C) 2014-2020 Cyrille Bagard * @@ -35,6 +35,7 @@ #include "../instruction-int.h" #include "../operands/immediate.h" #include "../operands/target.h" +#include "../../gtkext/gtkblockdisplay.h" @@ -629,7 +630,9 @@ static void g_raw_instruction_print(GRawInstruction *instr, GBufferLine *line, s /* Localisation */ - g_buffer_line_fill_vmpa(line, get_mrange_addr(&base->range), MDS_32_BITS_UNSIGNED, MDS_32_BITS_UNSIGNED); + g_buffer_line_fill_phys(line, DLC_PHYSICAL, MDS_32_BITS_UNSIGNED, get_mrange_addr(&base->range)); + + g_buffer_line_fill_virt(line, DLC_VIRTUAL, MDS_32_BITS_UNSIGNED, get_mrange_addr(&base->range)); /* Contenu */ diff --git a/src/arch/instructions/undefined.c b/src/arch/instructions/undefined.c index 6d90a1c..1623d7b 100644 --- a/src/arch/instructions/undefined.c +++ b/src/arch/instructions/undefined.c @@ -31,6 +31,7 @@ #include "undefined-int.h" +#include "../../gtkext/gtkblockdisplay.h" @@ -385,7 +386,9 @@ static void g_undef_instruction_print(GUndefInstruction *instr, GBufferLine *lin base = G_ARCH_INSTRUCTION(instr); - g_buffer_line_fill_vmpa(line, get_mrange_addr(&base->range), MDS_32_BITS_UNSIGNED, MDS_32_BITS_UNSIGNED); + g_buffer_line_fill_phys(line, DLC_PHYSICAL, MDS_32_BITS_UNSIGNED, get_mrange_addr(&base->range)); + + g_buffer_line_fill_virt(line, DLC_VIRTUAL, MDS_32_BITS_UNSIGNED, get_mrange_addr(&base->range)); g_buffer_line_fill_content(line, content, &base->range, VMPA_NO_PHYSICAL); |