最近在学51单片机,我用的是Linux系统。是个坚定的Linuxer。所以不打算换系统。只好自己找在Linux下能够写51单片机程序的编译器。不负苦心人,终于找到了,SDCC,在Fedora的自带的软件包中也有。^_^,OK。工具搞定了,可以开始学习了。我是学电气的,专业也是要学单片机的,但等老师教要等到猴年马月。自学是我一向崇尚的,而且大学里最重要的就是学会怎样学习。好了,废话不多说了。还是讲点靠谱的。
学校图书馆单片机的书还不少,但编译器都用的 Keil的。网上搜了搜,没什么sdcc的资料,:-),还不惨,官网上有文档。虽然是英文的,但最近几年坚持看英文技术书可不是盖的。用上 StarDic终于勉强弄懂。关于C51方面的就不多说了,虽然编译器不同,但基本还是可移植的。
就是Keil中的有些库SDCC中没有,貌似现在才发现一个,毕竟研究的时间还不长。就说说汇编的部分吧。
玩单片机我还是喜欢汇编,但Keil的汇编器语法和sdcc的实在不一样。怎么办呢?sdcc文档中也未提到汇编器的解释。但我在一大堆英文中苦苦的寻找者,终于看到SDCC的汇编器用的是ASXXXX的汇编器,而且还是个开源项目。^_^,顺藤摸瓜,找到那个网站。又是一堆的英文手册。为了技术,看吧。。。。
看手册,并把sdcc生成的汇编代码看看,还是摸出了一点门道,只是一点点阿,以后有新的进展会写进博客的,不过最近不会啦,课程太紧。还要备考四级。
如果用sdas8051写汇编版的单片机程序。会有几个文件。
sourcefile.asm 你自己编辑的源程序文本
sourcefile.rel 汇编器生成的目标文件
sourcefile.lst 汇编器生成的列表文件 用 -l 选项
sourcefile.rst 连接器生成的更新列表文件的文件
sourcefile.sym 汇编器生成的symbol listing(:-),不会翻译拉,看懂就行,意会) 用 -s 选项
soutcefile.mem 应该是连接器生成的内存使用状况的文件
sourcefile.ihx 连接器生成的hex文件,可以用sdcc自带的packihx工具转换为hex格式
。。。。。。。。。。。可能还会有,就不一一列举了,以上是几个重要的。
还有自己要创建的一个sourcefile.lnk文本文件,里面放的是连接器sdld所用的参数。
####################################################################################################
======================================================
所有sdcc可能会有的文件我粘帖在在下面:有兴趣的自己研究。
=====================================================
• sourcefile.asm - Assembler source file created by the compiler
• sourcefile.lst - Assembler listing file created by the Assembler
• sourcefile.rst - Assembler listing file updated with linkedit information, created by linkage editor
• sourcefile.sym - symbol listing for the sourcefile, created by the assembler
• sourcefile.rel - Object file created by the assembler, input to Linkage editor
• sourcefile.map - The memory map for the load module, created by the Linker
• sourcefile.mem - A file with a summary of the memory usage
• sourcefile.ihx - The load module in Intel hex format . Both formats are documented in the documentation of srecord
• sourcefile.adb - An intermediate file containing debug information needed to create the .cdb file (with --debug)
• sourcefile.cdb - An optional file (with --debug) containing debug information. The format is documented in cdbfileformat.pdf
• sourcefile. - (no extension) An optional AOMF or AOMF51 file containing debug information (generated
with option --debug). The (Intel) absolute object module f ormat is a subformat of the OMF51 format and is commonly used by third party tools (debuggers, simulators, emulators).
• sourcefile.dump* - Dump file to debug the compiler it self (generated with option --dumpall)
#######################################################################################################
下面用个实例解释以下sdas8051的汇编格式:
===========================================================================