• 回复
  • 收藏
  • 点赞
  • 分享
  • 发新帖

请教:这些汇编指令如何转换为C语言程序段?

MOV A, #105DH  
MOV    DPTR, #TABLE1EA  
TABLE:        
DB79H,46H,48H,60H,78H,39H,40H,7CH  
这个查表指令如何转为C语言程序
全部回复(7)
正序查看
倒序查看
g_yong
LV.4
2
2006-12-27 10:30
unsigned char code TABLE1EA[9] =
{0x00,0x79,0x46,0x48,0x60,
0x78,0x39,0x40,0x7C};
unsigned char chabiao(unsigned char q)
{
return(TABLE1EA[q]);
}
0
回复
fafamopei
LV.4
3
2007-07-04 13:39
@g_yong
unsignedcharcodeTABLE1EA[9]={0x00,0x79,0x46,0x48,0x60,0x78,0x39,0x40,0x7C};unsignedcharchabiao(unsignedcharq){return(TABLE1EA[q]);}
我编程想找你,用c语言.
0
回复
sdjufeng
LV.6
4
2007-07-04 13:51
@fafamopei
我编程想找你,用c语言.
可以到这里群里面:21358217 (单片机keil c51语言).
0
回复
sdjufeng
LV.6
5
2007-07-04 13:52
@g_yong
unsignedcharcodeTABLE1EA[9]={0x00,0x79,0x46,0x48,0x60,0x78,0x39,0x40,0x7C};unsignedcharchabiao(unsignedcharq){return(TABLE1EA[q]);}
很对!
0
回复
2007-07-06 00:27
@fafamopei
我编程想找你,用c语言.
推荐一本经典书籍给你<单片机的C语言应程序设计(第3版)>
北航出的
0
回复
g_yong
LV.4
7
2007-07-06 08:43
@fafamopei
我编程想找你,用c语言.
qq:573591624
0
回复
2007-07-06 08:53
@g_yong
qq:573591624
加入我的群吧
Q群:41562574
群共享里有另一本好书的PDF文档
0
回复