摘要:
#include #include const int const_global = 0; // 常全局变量 int init_global = 0; // 初始化全局变量 int uninit_global; // 未初始化全局变量 int main (int argc, char* argv[]) { const static int const_static = 0; //... 阅读全文
摘要:
链接地址:http://pan.baidu.com/s/1hsNtxJm 阅读全文
摘要:
mov R1,#30000000 ldr R0,[R1] 阅读全文
摘要:
void puthex(unsigned long val) { /* val = 0x1234ABCD */ unsigned char c; int i = 0; putc('0'); putc('x'); for (i = 0; i > ((7-i)*4)) & 0xf; if ((c >= 0) && (c = ... 阅读全文
摘要:
/* * 初始化UART0 * 57600,8N1,无流控 */ void uart0_init(void) { GPHCON |= 0xa0; // GPH2,GPH3用作TXD0,RXD0 GPHUP = 0x0c; // GPH2,GPH3内部上拉 ULCON0 = 0x03; // 8N1(8个数据位,无较验,1个停止位) ... 阅读全文