blob: 6c501c2c0c1a611f7c6b34c3c7a5d04fcb5a98a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//Example 5.3
//Page 256
k=7//from equation 5.14 on page 256
disp('Using the value of k')
disp('Using the value of k, the number of crosspoint determined are')
2*7*16
disp('The number of bits of memory can be determined are')
N=[2*7*128*4]+[7*128*8]+[7*128*7]
//Result
//The composite implementation complecity is 430 equivalent crosspoints.
|