Programming Problems
Home
PROGRAMS
DOWNLOAD
ABOUT
CONTACT
Sunday, 17 July 2016
Write a program in assembly language(8085) to find the largest number among three numbers stored in registers.
ORG 1000H
MVI A, 00H
MVI B, 08H
MVI C, 02H
MVI D, 09H
MOV A, B
CMP C
JNC LOOP
MOV A, C
JZ LOOP
LOOP:
CMP D
JC LP1
LP1:
MOV A,D
HLT
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Popular Posts
Write a shell script in Linux/Unix to generate Fibonacci series.
tput clear echo enter the range of the fibonacci series---- read n echo ------------------------------------------------- a=0 b...
Write a program in assembly language(8086) to convert an ASCII input to equivalent hex digit that it represents.
DATA SEGMENT ASCII DB 39h DATA ENDS CODE SEGMENT ASSUME CS:CODE, DS:DATA START: MOV AX, DATA MOV DS...
No comments:
Post a Comment