blob: 1f9c4555633077650ad81fdcc73bdcf7649e0fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//example 11.1(c)//
clc
//clears the screen//
clear
//clears all existing variables//
a=4+4+1+1;
//given no of inputs//
o=4+1;
//given no of outputs//
s=2^a*o;
//size of prom//
disp(s,'size of PROM =')
|