Expand description

A Ghidra-compatible symbol table format (.ghidra).

This format is the symbol table format read by the ImportSymbolsScript.py Ghidra script. Each symbol is listed on a separate line, and consists of a name, a memory address (as raw hexadecimal), and a letter identifying the symbol type (‘f’ for functions and ‘l’ for labels). If a symbol has aliases, each alias is listed on a separate line.

Example

main 2000000 f
function1 2400000 f
SOME_DATA 2FFFFFF l

Structs