structure of afx-file?

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

structure of afx-file?

跳至解决方案
2,004 次查看
martinpi
Contributor III


I'd like to understand the structure of the afx-file.

As far as I have found, it contains the executable code plus the symols for debugging.

But I did not find a documentation of the file structure.

 

I'd like to extract the executable code from the afx rather than decoding from an S19 file.

Furthermore I would like to extract information like the base address.

 

Thanks!

Martin

标签 (1)
0 项奖励
回复
1 解答
1,785 次查看
BlackNight
NXP Employee
NXP Employee

It is a standard ELF/Dwarf (DWARF - Wikipedia, the free encyclopedia) file, just with the .afx extension instead of .elf.

You can see this if you open the file with a text editor and if you look at the first few bytes.

So you should be able to use any tools which accept an ELF file.

I hope this helps,

Erich

在原帖中查看解决方案

0 项奖励
回复
1 回复
1,786 次查看
BlackNight
NXP Employee
NXP Employee

It is a standard ELF/Dwarf (DWARF - Wikipedia, the free encyclopedia) file, just with the .afx extension instead of .elf.

You can see this if you open the file with a text editor and if you look at the first few bytes.

So you should be able to use any tools which accept an ELF file.

I hope this helps,

Erich

0 项奖励
回复