blob: 569446fc55bcd2382e93a6293ca21d73367bc3d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//chapter-12,Example12_9,pg 509
//ROM 22*5*7
N=5//no. of gates in bitand plane
n=22//no.of inputs
f=913//refresh rate
//considering column display
ts=(1/(N*f*n))//ROM access time
printf("ROM access time\n")
printf("ts=%.6f s\n",ts)
|