发布时间:2014-02-16 22:09:21
LOCAL_MODULE_TAGS :=user eng tests optionaluser: 指该模块只在user版本下才编译eng: 指该模块只在eng版本下才编译tests: 指该模块只在tests版本下才编译optional:指该模块在所有版本下都编译 eng This is the default flavor. A plain "make" is the same as "make eng". droid is an a.........【阅读全文】
发布时间:2013-09-04 23:34:34
Cortex-M0(NXP LPC11C14) 启动代码分析启动代码的一般作用1、堆和栈的初始化;2、向量表定义;3、地址重映射及中断向量表的转移;4、初始化有特殊要求的断口.........【阅读全文】
发布时间:2013-08-02 10:18:08
#include <stdio.h>int main() { int a = 10, b;__asm__("movl %1, %%eax\n\t""movl %%eax, %0\n\t":"=r"(b) /* output */:"r"(a) /* input */:"%eax" /* clobbered register */);printf("Result: %d, %d\n", a, b);return 0;}All summery:reference:.........【阅读全文】