From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1133/CH8/EX8.40/Example8_40.sce | 35 +++++++++++++++++++++++++++++++++++ 1133/CH8/EX8.40/Fig8_94_exmp8_40.xcos | 1 + 2 files changed, 36 insertions(+) create mode 100755 1133/CH8/EX8.40/Example8_40.sce create mode 100755 1133/CH8/EX8.40/Fig8_94_exmp8_40.xcos (limited to '1133/CH8/EX8.40') diff --git a/1133/CH8/EX8.40/Example8_40.sce b/1133/CH8/EX8.40/Example8_40.sce new file mode 100755 index 000000000..682f7fae3 --- /dev/null +++ b/1133/CH8/EX8.40/Example8_40.sce @@ -0,0 +1,35 @@ +//Example 8.40 +clc +disp("Excitation table") +disp("Present State Next State Flip-flop Inputs") +disp(" QC QB A+ B+ J_A K_A J_B K_B") +disp(" 0 0 1 1 1 X 1 X") +disp(" 0 1 0 0 0 X X 1") +disp(" 1 0 0 1 X 1 1 X") +disp(" 1 1 1 0 X 0 X 1") +disp("") +disp("K-map Simplification") +disp(" For J_A") +disp(" B'' B") +disp("A'' 1 0") +disp("A X X") +disp("J_A = B''") +disp("") +disp(" For K_A") +disp(" B'' B") +disp("A'' X X") +disp("A 1 0") +disp("K_A = B''") +disp("") +disp(" For J_B") +disp(" B'' B") +disp("A'' 1 X") +disp("A 1 X") +disp("J_B = 1") +disp("") +disp(" For K_B") +disp(" B'' B") +disp("A'' X 1") +disp("A X 1") +disp("K_B = 1") +disp("") diff --git a/1133/CH8/EX8.40/Fig8_94_exmp8_40.xcos b/1133/CH8/EX8.40/Fig8_94_exmp8_40.xcos new file mode 100755 index 000000000..2df2c54cf --- /dev/null +++ b/1133/CH8/EX8.40/Fig8_94_exmp8_40.xcos @@ -0,0 +1 @@ + \ No newline at end of file -- cgit