View Single Post
Newbie Member
24Aug2007,13:47  
12341234's Avatar
Hello, is this correct?

1. A program in 8085 assembly language to store EFH in following registers
Registers: B,C,D,H,L
(using only MOV & MVI instructions)

MVI B,EFH
MOV C,B
MOV D,C
MVI M,EFH ; will store EFH into memory location pointed out by HL contents.
HLT