blob: 319325a375428081e5b7c68d4bed42c6631d286d (
plain)
1
2
3
4
5
6
7
8
9
|
//example 11.6(d)//
clc
//clears the screen//
clear
//clears already existing variables//
disp('In this case, the memory locations 3 and 5 are selected for writing since Y3=Y5=0. The contents of these locations will become 10 and')
disp('D1D0=10')
//given A1A0=00, W''=0, Y=11010111//
//I1I0=10//
|