mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
Debugger symbols: Add new symbol type: Notes.. Notes are for naming single instructions, or small groups of instructions.
Notes are separate from function symbols, and can be searched separately. Unlike functions, notes of different length can overlap each other. In the instruction window, a note will always display over the function symbol.
This commit is contained in:
parent
5eb61024c6
commit
040d9a4336
5 changed files with 122 additions and 5 deletions
|
@ -51,6 +51,7 @@ void SymbolDB::Clear(const char* prefix)
|
|||
{
|
||||
// TODO: honor prefix
|
||||
m_functions.clear();
|
||||
m_notes.clear();
|
||||
m_checksum_to_function.clear();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue