4楼说得对
write a data to the on byte being programmed 就是直接写数据,具体的操作可以这么写
ldhx #$7820 ;需要写入的地址0x7820
lda #$20 ;需要写入的数据0x20
sta ,X ;数据写入地址
如果用C写就可以这样写
unsigned int flash_addr=0x7820;
*(volatile unsigned int *)flash_addr= 0x20;
记得把程序调到RAM里面运行
[此贴子已经被作者于2005-7-28 15:13:16编辑过] |