blob: 21ab9602b073ea7ceec073edc1a6642d93481612 (
plain)
1
2
3
4
5
6
7
8
9
|
//example 14.1.b//
clc
//clears the screen//
clear
//clears all existing variables//
r=16*1024;
//given rom capacity//
column=sqrt(r)
disp(column,' no of registers in each column = ')
|