06 2013 档案
摘要:x86段寄存器介绍: 指针寄存器: 通用寄存器 变址寄存器
阅读全文
摘要:#include <stdio.h>static unsigned long int next = 1;void my_srand(unsigned int seed){ next = seed;}int my_rand(void){ next = next * 1103515245 + 12345; return (unsigned int)next / 65536 % ...
阅读全文
摘要:#include <stdio.h>char *itobs(int, char *);void show_bstr(const char *);int main(void){ char bin_str[8 * sizeof(int) + 1]; int number; puts("Enter integers and see them in binary."); pu...
阅读全文
摘要:虽然现在计算机的运算速度不断提高, 但大型软件的编译速度仍然是个漫长的过程,我所在的项目, 软件大小约为200K行, 在VC6下的编译时间为3分钟(P4 1.8G, 512M), 在交叉编译时更慢, 提高编译速度将能够直接提高前期调测的效率. 本文将介绍提高编译速度的有效方法之一 - 分布式编译. 分布式编译的原理很简单, 就是将编译的整个工作量通过分布计算的方法分配到多个计算机上执行...
阅读全文
摘要:http://tweetflight.wearebrightly.com/
阅读全文

浙公网安备 33010602011771号