| |||
| Home > Using fromelf > Examples of fromelf usage > Listing addresses of static data | |||
To list to stdout all the global and static
data variables and all the structure field addresses, use:
fromelf --text -a --select * infile.axf
To produce a text file containing all of the structure addresses
in inputfile.axf but none of the global or
static data variable information, use:
fromelf --text -a --select *.* -o strucaddress.txt infile.axf
To produce a text file containing addresses of the nested structures only, use:
fromelf --text -a --select *.*.* -o strucaddress.txt infile.axf