blob: 6da38fcd5d83cbabff6d3f435fcc3b3b680b3f2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//example 10.8
clc;
clear;
//ff = input('Enter the no of flip-flops :');
ff=4; //given input
k=2^ff;
if(k==2) then //output display
printf('With given flipflop we can only count 2, we can have a modulus 2 counter');
else
printf('With given number of flip-flops the counter will have a natural count of %d\n',k);
printf('We can thus construct any counter that has a modulus between %d and 2',k )
end;
|