diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2020-05-13 18:51:32 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2020-05-15 15:25:16 +0100 |
commit | e5ef4ec28b801155e20fdb3a4cd21920ffc5f1af (patch) | |
tree | 43293a021a65ce37609a8a099af3230de37ecc1e /include/disas/disas.h | |
parent | 6a7aa856c59fba11c119fd2f62a2dbd03f8ca08f (diff) | |
download | qemu-e5ef4ec28b801155e20fdb3a4cd21920ffc5f1af.zip qemu-e5ef4ec28b801155e20fdb3a4cd21920ffc5f1af.tar.gz qemu-e5ef4ec28b801155e20fdb3a4cd21920ffc5f1af.tar.bz2 |
disas: include an optional note for the start of disassembly
This will become useful shortly for providing more information about
output assembly inline. While there fix up the indenting and code
formatting in disas().
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200513175134.19619-9-alex.bennee@linaro.org>
Diffstat (limited to 'include/disas/disas.h')
-rw-r--r-- | include/disas/disas.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/disas/disas.h b/include/disas/disas.h index 36c33f6..1b6e035 100644 --- a/include/disas/disas.h +++ b/include/disas/disas.h @@ -7,7 +7,7 @@ #include "cpu.h" /* Disassemble this for me please... (debugging). */ -void disas(FILE *out, void *code, unsigned long size); +void disas(FILE *out, void *code, unsigned long size, const char *note); void target_disas(FILE *out, CPUState *cpu, target_ulong code, target_ulong size); |