Write a program in 8085 assembly language to reverse a memory block of 10 bytes
Answers
Answered by
0
In c it can be written as
1st part you can write if not comment
While(n!=0)
R=n%10;
S=s×10+r;
N=n/10;
Printf(s);
It will reverse the number
Similar questions