| |||
| 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, enter:
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, enter:
fromelf -text -a -select *.* -o strucaddress.txt infile.axf
To produce a text file containing addresses of the nested structure only, enter:
fromelf -text -a -select *.*.* -o strucaddress.txt infile.axf