diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2522/CH12/EX12.2/exm12_2.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2522/CH12/EX12.2/exm12_2.sce')
-rwxr-xr-x | 2522/CH12/EX12.2/exm12_2.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2522/CH12/EX12.2/exm12_2.sce b/2522/CH12/EX12.2/exm12_2.sce new file mode 100755 index 000000000..0e77bb164 --- /dev/null +++ b/2522/CH12/EX12.2/exm12_2.sce @@ -0,0 +1,10 @@ +// page no 374
+// example no 12.2
+// RESET 7.5 INTERRUPT
+clc;
+printf('MVI A,18H \n'); // set D4=1
+a=hex2dec(['18']);
+b=dec2bin(a,8);
+printf('A--> ')
+disp(b);
+printf('\n \n SIM'); // Reset 7.5 interrupt flip flop
|