diff options
Diffstat (limited to 'src/arch/instructions/raw.c')
-rw-r--r-- | src/arch/instructions/raw.c | 7 |
1 files changed, 5 insertions, 2 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 */ |