answersLogoWhite

0

What is the different between LXI and LHLD in 8085?

LHLD 2050 Means..copy content of 2050 and 2051 to HL pair

if

2050 -> 90H

2051->5AH

LHLD 2050 implies..

L -> 90H

H -> 5AH

LXI means..Load Register Pair with Immediate data.. 16bit data

LXI B ,2050H

Loads BC pair with value 2050H

B-> 20H

C-> 50H

Its similar to 2 MVI instruction

ie

MVI H,20H

MVI L,50H

which eventually implies..HL -> 2050H

the advantage of LXI over MVI is that LXI is 3 byte and requires 10T states.Two MVI instruction is 4Byte and require 14Tstates...

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Multiplication 16 bit program for 8085?

Lxi b, 0000h lhld 8000h xchg lhld 8002h dcx d l006: lda 8002h add l mov l, a lda 8003h adc h mov h, a jnc l013 l013: inx b dcx d mov a, d ora e jnz l006 shld 8006h mov l, c mov h, b shld 8004h hlt


What is the different between alto vxi and alto lxi?

alto lxi is 800cc engine. & alto vxi is 1000cc engine.


Write a program to set all flags of 8085?

; Exact answer: LXI H, FFFFH push H POP PSW


Why you use LXI SP command for factorial in 8085 assembly language?

It's up to you: don't use it, if you don't want.


Program for block transfer in 8085?

Block transfer in 8085... PUSH FLAGS {optional, if registers need to be saved} PUSH B PUSH D PUSH H LXI H,COUNT LXI B,SOURCE LXI D,DESTINATION LOOP LDAX B STAX D INX B INX D DCX H MOV A,H ORA L JNZ LOOP POP H {optional, if registers need to be saved} POP D POP B POP FLAGS


What is the difference between lxi vxi zxi types of car models?

== LXI== base model XI==


What is the difference between a 1991 Honda Accord LX and an LXI?

It was sold in a different country. In the third-generation Accord "LX" means it has a carburetor and "LXI" means fuel injection. Fourth-generation Accords are all fuel injected, so they sold them as LX in some countries and LXI in others.


BCD to HEX conversion using 8085?

lxi h,1000mvi d,00xra amov c,mloop2: adi 01daajnc loop1inr dloop1: dcr cjnz loop2sta 1010mov a,dsta 1011hlt


What is the lxi mean in roman numerals?

101Improved Answer:-It is: lxi or LXI = 61


What is the Roman Numeral for lxi?

It is: lxi or LXI are both equal to 61


Program to find the Square root of a number using 8085?

Lxi h,c050mov a,mmvi b,01mvi c,00l2:sub bjc l1inr cinr binr bjmp l2l1:mov a,csta c060hlt


Write a 8085 microprocessor program to check whether a give number is even or odd?

Lxi h, 2000h mov a,m mov b,a inx h mov a,m add b sta 2002h hlt