winnie 发表于 2009-4-8 10:34:34

在C环境下,在混合的汇编里访问C定义的RAM的方法

请教
#include <pic.h>
#include <stdio.h>
#include <pic165x.h>
char    temp_a,   temp_b;
dmx()
{
#asm
movlw      09h
movwf      temp_a          --------------------------------------------------这句出错编译不了,有什么办法能让这句汇编
                                                                                                                程序能访问C 定义的   temp_a呢
nop
nop
#endasm
}



main()
{
while(1)
{
temp_b=1;
temp_a++;
dmx();
}
}

winnie 发表于 2009-4-8 10:34:42

變量前加個下劃線,以示區分!
页: [1]
查看完整版本: 在C环境下,在混合的汇编里访问C定义的RAM的方法