搜索
bottom↓
回复: 1

马老师!!!!!!!请赐教下一个 mega128嵌入汇编的问题,望指教啊!!!!

[复制链接]

出0入0汤圆

发表于 2006-12-20 09:14:34 | 显示全部楼层 |阅读模式
马老师,我现在要编写个PWM发射数据的程序。

主程序用C编写,现在以知要 发那些数据,我先把这些数据放一个数组里面,

然后编写一个发射这些数据的汇编程序,并嵌入C语言主程序中

汇编嵌入C语言中我会,但我问题就是不知道怎么在汇编程序找到C语言主程序的数组并发送他们?

就是怎么去找着个数组的位置??怎么编写??

望各位老师赐教,本人刚开始学Mega128,用的软件是ICC和AVR studio

阿莫论坛20周年了!感谢大家的支持与爱护!!

一只鸟敢站在脆弱的枝条上歇脚,它依仗的不是枝条不会断,而是自己有翅膀,会飞。

出0入0汤圆

发表于 2007-3-9 23:37:37 | 显示全部楼层
External Names

External C names are prefixed with an underscore, e.g. the function main is _main if referenced in an assembly module. Names are significant to 32 characters. To make an assembly object global, use two colons after the name. For example,



_foo::



.word 1



(In the C file)



extern int foo;



Argument and Return Registers



The first argument is passed in registers R16/R17 if it is an integer and R16/R17/R18/R19 if it is a long or floating point. The second argument is passed in R18/R19 if available. All other remaining arguments are passed on the software stack.



Integer arguments smaller than ints (i.e. char) are not extended to in IF the function prototype is available. If registers are used to pass byte arguments, it will use both registers but the higher register is undefined. For example, if the first argument is a byte, both R16/R17 will be used with R17 being undefined. Byte arguments passed on the software stack take up only a single byte. In the future release, byte arguments passed in registers will be packed tightly.



If R16/R17 is used to pass the first argument and the second argument is a long or float, the lower half of the second argument is passed in R18/R19 and the upper half is passed on the software stack.



Integer values are returned in R16/R17 and longs and floats are returned in R16/R17/R18/R19. Byte values are returned in R16 with R17 undefined.



Preserved Registers



An assembly function must save and restore the following registers:



R28/R29 or Y, this is the frame pointer.

        R10/R11/R12/R13/R14/R15/R20/R21/R22/R23



These registers are called preserved registers since their contents are unchanged by a function call. You can ask the compiler not to use the registers R20, R21, R22, and R23, then you do not need to save and restore these 4 registers.



Volatile Registers



The other registers:



R0/R1/R2/R3/R4/R5/R6/R7/R8/R9/R24/R25/R26/R27/R30/R31

        SREG



can be used in a function without being saved or restored. These registers are called volatile registers since their contents may be changed by a function call.



Interrupt Handlers



以上摘自ICC的HELP,你参考一下。



建议C调用汇编子程序时,将数组的头指针作为参数传到子程序,在汇编中从相应的寄存器中得到头指针。
回帖提示: 反政府言论将被立即封锁ID 在按“提交”前,请自问一下:我这样表达会给举报吗,会给自己惹麻烦吗? 另外:尽量不要使用Mark、顶等没有意义的回复。不得大量使用大字体和彩色字。【本论坛不允许直接上传手机拍摄图片,浪费大家下载带宽和论坛服务器空间,请压缩后(图片小于1兆)才上传。压缩方法可以在微信里面发给自己(不要勾选“原图),然后下载,就能得到压缩后的图片】。另外,手机版只能上传图片,要上传附件需要切换到电脑版(不需要使用电脑,手机上切换到电脑版就行,页面底部)。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|Archiver|amobbs.com 阿莫电子技术论坛 ( 粤ICP备2022115958号, 版权所有:东莞阿莫电子贸易商行 创办于2004年 (公安交互式论坛备案:44190002001997 ) )

GMT+8, 2024-5-18 13:50

© Since 2004 www.amobbs.com, 原www.ourdev.cn, 原www.ouravr.com

快速回复 返回顶部 返回列表