
单片机
GARY
“夜深人静之时,头发斑白的老程序员会蜷缩在床上,欣赏一段精彩的子程序,或者苦思冥想一个绝妙的宏结构;而那些年少轻狂的程序员,则可能正在通过终端与别人聊得不亦乐乎。” ——[美]杰拉尔德.温伯格
展开
-
KEIL C51中的_at_ 关键字
Absolute Variable LocationVariables may be located at absolute memory locations in your C programsource modules using the _at_ keyword. The usage for this feature is:type _memory_space_ varia原创 2009-11-09 17:03:00 · 12487 阅读 · 0 评论 -
KEIL C51的XBYTE关键字
XBYTEThe XBYTE macro allows you to access individual bytes in the external datamemory of the 8051. You may use this macro in your programs as follows:rval = XBYTE [0x0002];XBYTE [0x0002] = 57;原创 2009-11-11 17:35:00 · 1877 阅读 · 2 评论