Division of Two 8 bit numbers in 8085
AIM:To prepare an assembly language program for 8085 to multiply two 8 bit numbers
PROGRAM
MVI C,00
LDA 4200
MOV B,A
LDA 4201
LABEL:SUBB B
INR C
JNC LABEL
DCR C
ADD B
STA 4202
MOV A,C
STA 4203
HLT
SAMPLE OUTPUT
|
ADDRESS |
DATA |
INPUT/OUTPUT |
|
4200 |
02 |
Input |
|
4201 |
05 |
Input |
|
4202 |
01 |
Output |
|
4203 |
02 |
Output |
RESULT
A program to divide two 8 bit numbers for 8085 was prepared and output obtained
You may also like:
Custom Search
using addresses ’4201,4032′ does not work and how do you find a square or cube of a number using 8085. thanks in advance
Wrong PrograM:
cHANGES NEEDED:
LABEL: SUB B
INR C
CMP B
JNC LABEL
STA 4202
MOV A,C
STA 4203
I WANT A LATEST NEWS FROM MICROPROCESSOR