Write a program to sort given 10 numbers from memory location 220H in the ascending order.

No comments
Arrange in ascending order

Statement :  Write a program to sort given 10 numbers from memory location 220H in the ascending order.

MVI  B,  09           : “Initialize counter”
START                    : “LXI  H,  220H:  Initialize memory pointer”
MVI  C,  09H        : “Initialize counter  2”
BACK:  MOV  A, M: “Get the number”
INX  H                   : “Increment memory pointer”
CMP  M                  : “Compare number with next number”
JC SKIP                  : “If less, don’t interchange”
JZ  SKIP                 : “If equal, don’t interchange”
MOV  D,  M
MOV  M,  A
DCX  H
MOV  M,  D
INX  H                     : “Interchange two numbers”
SKIP:DCR  C           : “Decrement  counter  2”
JNZ  BACK              : “If not zero, repeat”
DCR  B                    : “Decrement counter 1”
JNZ  START           
HLT                       : “Terminate program execution”

No comments :

Post a Comment

Subscribe

Milan Panda
Admin
About Me | Contact
Copyright 2023-2024 © Programming1011 . 🎀 Developed and Design By- Milan Panda. Happy Holi All Of You 🎀