Write a program in 8085 assembly language to transfer a memory block of 10 bytes starting from C000H and onwards to the location C050H and onwards?

1 answer

Answer

1056744

2026-03-17 03:05

+ Follow

its in mnemonics : get the hex code from internet.

MVI B,10H(REGISTER B AS A COUNTER)

LXI H,C000H(SOURCE REGISTER, H-L AS MEMORY POINTER)

LXI D,C050H(DESTINATION REGISTER)

L1: MOV A,M

STAX D

INX H

INX D

DCR B

JNZ L1

RST 1

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.