Module resymgen::data_formats::sym

source ·
Expand description

The SYM (.sym) format.

The SYM format is a simple symbol table format. Each symbol is listed on a separate line, and consists of a memory address (as a raw, 8-character hexadecimal number) and a name separated by spaces. Symbols are always listed by their primary name; any aliases are ignored.

Example

02000000 main
02400000 function1
02FFFFFF SOME_DATA

Structs