1.存储控制器介绍
s3c2440中的“存储管理器”提供了访问外部设备所需要的信号,有如下特性:
1.支持小字节序、大字节序(通过软件选择)
2.每个BANK为128M,一共有8个BANK,共1G...
分类:
系统相关 时间:
2015-02-07 16:01:14
阅读次数:
299
1.行有效时序图 初始化完成后,要想对一个L-Bank中的阵列进行寻址,首先就要确定行(Row),使之处于活动状态(Active),然后再确定列。虽然之前要进行片选和L-Bank的定址,但它们与行有效可以同时进行。 从图中可以看出,在CS#、L-Bank定址的同时,RAS(Row Add...
分类:
其他好文 时间:
2015-02-07 00:28:58
阅读次数:
277
//example #include #include #include #include #define GPIO_TO_PIN(bank, gpio) (32 * (bank) + (gpio))int main(int argc, char * argv){ int i, n, fd; cha...
分类:
其他好文 时间:
2015-02-06 00:43:09
阅读次数:
314
key:要取满,所以big[0] = 0;其他的都初始化为无穷~#include #include #include const int maxn = 1e4 + 5;const int INF = 1e7;int big[maxn];using namespace std;int main(){ ...
分类:
其他好文 时间:
2015-02-05 20:14:24
阅读次数:
123
去除nor flash写保护在已经运行起来的u-boot命令行去除nor flash写保护:TQ2440 # flinfo
Bank # 1: EON EN29LV160AB flash (16 x 16) Size: 2 MB in 35 Sectors
AMD Legacy command set, Manufacturer ID: 0x1C, Device ID: 0x2249...
分类:
其他好文 时间:
2015-02-05 09:34:30
阅读次数:
283
1.HDU 1114Piggy Bank一道简单的背包问题#include #include #include using namespace std;#define ll long longconst int N = 10005;const int INF = 0x3f3f3f3f;int dp[...
分类:
其他好文 时间:
2015-01-28 21:14:04
阅读次数:
251
储钱罐【题目描述】今年的ACM比赛在xxx国举行,为了比赛的顺利进行,必须提前预算好需要的费用,以及费用的来源。费用的主要来源是只进不出的金钱。其实原理很简单,每当ACM成员有任何一点小钱,他们就会把这些钱全部投进储钱罐。你知道钱投进储钱罐后是无法再取出来的,除非你打碎储钱罐,而这是不允许的。经过一...
分类:
其他好文 时间:
2015-01-27 12:34:09
阅读次数:
205
http://poj.org/problem?id=1384题意:给出一个储蓄罐 的空和满时的重量 再给出n种硬币的 value 和 weight 问满足正好装满罐子时的最小价值是多少思路 :if(dp[j]>dp[j-w[i]]+v[i]) dp[j]=dp[j-w[i]]+v[i];...
分类:
其他好文 时间:
2015-01-26 14:51:51
阅读次数:
118
package com.bank.service;import java.io.IOException;import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.conf.Configured;import org.ap...
分类:
其他好文 时间:
2015-01-26 00:03:24
阅读次数:
331
Cash MachineTime Limit:1000MSMemory Limit:10000KTotal Submissions:28364Accepted:10125DescriptionA Bank plans to install a machine for cash withdrawal....
分类:
其他好文 时间:
2015-01-24 22:38:54
阅读次数:
274