如何设置KEIL MDK生成反汇编和BIN文件
简单记录如下图:
生成bin文件
fromelf –bin –output=xxxx.bin xxxx\xxxx.axf
其中–bin是制定输出文件格式是bin格式,
–output=xxxx.bin指定输出文件名,
xxxx\xxxx.axf 是指定路径下的指定axf文件,此文件作为输入文件,是keil编译后产生的
生成反汇编文件
fromelf –text -a -c –output=xxxx.txt xxxx\xxxx.axf
其中–text是指定输出文件格式为text格式,
-a Prints the global and static data addresses (including addresses for structure and union contents). This option can only be used on files containing debug information. Use the -select option to output a subset of the data addresses.
-c Disassembles code
–output=xxxx.txt 指定输出文件名,
xxxx\xxxx.axf 是指定路径下的指定axf文件,此文件作为输入文件,是keil编译后产生的;
想要了解更多那就看fromelf userguide吧!