Search a byte in a given number

No comments
Statement :  Search the given byte in the list of 50 numbers stored in the consecutive memory locations and store the address of memory location in the memory location 2200H and 2201H. Assume byte is in the C register and starting address of the list is 2000H. If byte is not found store 00 at 2200H and 2201H.

LXI  H,  2000H       : “Initialize memory pointer 52H”
MVI  B,  52H           : “Initialize counter”
BACK:  MOV  A, M : “Get the number”
CMP  C                     : “Compare with the given bytes”
JZ  LAST                    : “Go last if match occurs”
INX  H                       : “Increment memory pointer”
DCR  B                      : “Decrement counter”
JNZ  B                       : “If not zero, repeat”
LXI  H,  0000H  
SHLD  2200H
JMP  END                 : “Store oo at 2200H and 2201H”
LAST:  SHLD  2200H:”Store memory address”
END:   HLT                : “Stop”

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 🎀