1 | /* $Id: VBoxDbgDisas.h 31530 2010-08-10 12:24:45Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Debugger GUI - Disassembly View.
|
---|
4 | */
|
---|
5 |
|
---|
6 |
|
---|
7 | #ifndef ___Debugger_VBoxDbgDisas_h
|
---|
8 | #define ___Debugger_VBoxDbgDisas_h
|
---|
9 |
|
---|
10 | /**
|
---|
11 | * Feature list:
|
---|
12 | * - Combobox (or some entry field with history similar to the command) for
|
---|
13 | * entering the address. Should support registers and other symbols, and
|
---|
14 | * possibly also grok various operators like the debugger command line.
|
---|
15 | * => Needs to make the DBGC evaluator available somehow.
|
---|
16 | * - Refresh manual/interval (for EIP or other non-fixed address expression).
|
---|
17 | * - Scrollable - down is not an issue, up is a bit more difficult.
|
---|
18 | * - Hide/Unhide PATM patches (jumps/int3/whatever) button in the guest disas.
|
---|
19 | * - Drop down for selecting mixed original guest disas and PATM/REM disas
|
---|
20 | * (Guest Only, Guest+PATM, Guest+REM).
|
---|
21 | *
|
---|
22 | */
|
---|
23 | class VBoxDbgDisas
|
---|
24 | {
|
---|
25 |
|
---|
26 | };
|
---|
27 |
|
---|
28 | #endif
|
---|
29 |
|
---|