2012年5月26日
摘要: NOR的特点是芯片内执行,这样程序可以直接在FLASH内运行,不必再把程序读到系统RAM中。NOR的传输效率很高,在小容量时有很高的成本效益,但是很低的写入和擦除速度大大的影响了它的性能。NOR可以做到不存在坏道或坏块,所以可以做XIP.-----------------------NAND可以做到高密度存储,写入和擦除的速度也很快。应用NAND的困难在于FLASH的管理和需要特殊的系统接口。NAND可能有坏道或坏块,且有可能出场就有坏块。NAND不能像其他Memory那样通过数据和地址线访问,只能通过IO顺序访问,因此访问效率低,但是其传输速度快,所以适合做大容量存储器,相对来说NOR适合做 阅读全文
posted @ 2012-05-26 10:28 Aspire 阅读(130) 评论(0) 推荐(0)
  2012年4月5日
摘要: #include <stdio.h>#include <time.h>#include <stdlib.h>//删除数组中的某一元素,后续元素全部移位int DelArrayData(int *Array,int len,int index){ int i=0; for (i=index;i<len;i++) { Array[i]=Array[i+1]; } return Array[index... 阅读全文
posted @ 2012-04-05 15:28 Aspire 阅读(146) 评论(0) 推荐(0)
  2012年3月20日
摘要: OK,folks,Let's get to work.We need to come up with some ideas for the new essentials perfume campaign.This is a really big contract and we are under a lot of pressure here to impress the client. 阅读全文
posted @ 2012-03-20 13:06 Aspire 阅读(153) 评论(0) 推荐(0)
  2012年3月19日
摘要: 测试:第一篇日志//Now test insert cpp codes;#include <iostream>using namespace std;int main(){ cout<<"Hello World"<<endl; return 0;} 阅读全文
posted @ 2012-03-19 22:10 Aspire 阅读(123) 评论(0) 推荐(0)