answersLogoWhite

0

What is h-L in the Intel 8085?

Updated: 10/19/2022
User Avatar

Wiki User

14y ago

Best Answer

HL is a register pair that is used to store 16-bit data in 8085 Microprocessor

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is h-L in the Intel 8085?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Which are the various 16-bit registers in Intel 8085?

The various 16-bit registers on the 8085 are BC, DE, HL, SP, PC.


What is a 8085 microprocessor?

with neat diagram explain the system bus structure of 8085


Different between motorolla 6800 and Intel 8085?

in 8085 only one accumulator used where in 6800 used two accumulator.


What are stacks subroutines in 8085 microprocessor?

A subroutine is a group of instructions that will be used repeatedly in diff locations of the program..........rather than repeating the same instructions several times, they can be grouped into a subroutine that is called from diff locations. 8085 has 2 instruction set for dealing with subroutines: 1.CALL -direct the program execution to the subroutine. Generally it pushes address of next instruction of program counter onto the stack,then goes to the address of subroutine. 2.RET:- pops the address of next instruction from the stack and places it in the program counter and returns to that address to continue processing. For example, you have an often used value stored in HL. You have to call a subroutine that you know will destroy HL (with destroy I mean that HL will be changed to another value, which you perhaps don't know). Instead of first saving HL in a memory location and then loading it back after the subroutine, you can push HL before calling and directly after the calling pop it back. Of course, it's often better to use the pushes and pops inside the subroutine.


Why hl register pair is called as memory pointer?

Because in many statements you use HL as a pointer to memory data, eg: LD B,(HL) SUB A,(HL) LD (HL),E