Microprocessor Lab Mnual
Microprocessor Lab Mnual
6. Program to reverse a block of data byte at the source memory without using
dummy block.
A. ADDITION PROGRAMS
B. SUBTRACTION PROGRAMS
9. Program to perform 8 bit binary subtraction using 1’s complement method
10. Program to perform16 bit binary subtraction using 1’s complement method
11. Program to perform 8 bit binary subtraction using 2’s complement method
13. Program to perform 8 bit BCD subtraction using 9’s complement method
14. Program to perform 16 bit BCD subtraction using 9’s complement method
15. Program to perform 8 bit BCD subtraction using 10’s complement method
16. Program to perform 16 bit BCD subtraction using 10’s complement method
19. Program to subtract one N – byte number from another N – byte number
C. MULTIPLICATION PROGRAMS
D. DIVISION PROGRAMS
E. OTHER PROGRAMS
1. Program to find the length of the string with out using string instructions.
LABEL MNEMONICS COMMENTS
MOV SI,2000
MOV CL,00
BACK: MOV AL,[SI]
CMP AL,24
JZ NEXT
INC CL
INC SI
JMP BACK
NEXT: MOV [300],CL
INT 3
2. Program to find the number of vowels in a string with out using string
instructions.