Addressing modes of Z-80


Here we will see the addressing modes of the Zilog Z-80 Microprocessor. But at first we will discuss about the mnemonics of Z-80.

As we know there are many similarities between Intel 8085 and Zilog Z-80, so we can also find the similarity on the instructions. But in Z-80 the Mnemonics are slightly different. The Hex codes are same, but only the mnemonics are different. So, if we want to execute a program, which was written in the 8085 MPU, it will work fine. But Z-80 has many other instructions, which are not available in the 8085.

Here is the list of mnemonics of 8085 and Z-80, where the hex codes are same.

8085 MnemonicsZ-80 Mnemonics
ADI/ACI d8ADD/ADC A, d8
ADD/ADC MADD/ADC A, (HL)
ADD/ADC rADD/ADC A, r
DAD B/D/H/SPADD HL,BC/DE/HL/SP
SUI d8SUB d8
SUB MSUB (HL)
SBI d8SBC A, d8
SBB MSBC A, (HL)
SBB rSBC A, r
CNC/CC/CZ/CNZ/CP/CM/CPO/CPE a16CALL C/NC/Z/NZ/P/M/PO/PE a16
RNC/RC/RZ/RNZ/RP/RM/RPO/RPERET C/NC/Z/NZ/P/M/PO/PE
JMP a16JP a16
JNC/JC/JZ/JNZ/JP/JM/JPO/JPE a16JP C/NC/Z/NZ/P/M/PO/PE a16
PCHLJP (HL)
RST 0/1/2/3/4/5/6/7RST 0/8/10H/18H/20H/28H/30H/38H
INR/DCR r/MINC/DEC r/(HL)
INX/DCX B/D/H/SPINC/DEC BC/DE/HL/SP
CMC/STCCCF/SCF
CMP r/MCP r/(HL)
CPI d8CP d8
CMACPL
XCHGEX DE,HL
XTHLEX (SP), HL
HLTHALT
IN a8IN A, (a8)
OUT a8OUT (a8), A
LDA a16LD A, (a16)
STA a16LD (a16), A
LDAX B/DLD A, (BC)/(DE)
STAX B/DLD (BC)/(DE), A
LHLD a16LD HL, (a16)
SHLD a16LD (a16), HL
MOV r1, r2LD r1, r2
MOV M, rLD (HL), r
MVI r/M, d8LD r/(HL), d8
LXI B/D/H/SP, d16LD BC/DE/HL/SP, d16
SPHLLD SP, HL
PUSH/POP B/D/H/PSWPUSH/POP BC/DE/HL/AF
RAL/RLC/RAR/RRCRLA/RLCA/RRA/RRCA

Now, we will see the addressing modes of the Z-80 Microprocessor.

Immediate Addressing Mode

In this mode the byte, which is following the opcode is the actual operand. So, when we directly store some content into some register, it will be an example of immediate addressing mode.

Immediate (Extended) Addressing Mode

It is same as the immediate addressing mode; the only difference is it takes 16-bit data as input after the opcode. To store some data into some register pair, we will use this kind of addressing modes.

Modified Page Zero Addressing Mode

In this microprocessor, there are a 1-byte CALL instructions for any of eight locations in page zero of the memory. It acts like the restart operation. It sets the program counter to an effective address in Page zero.

Relative Addressing Mode

In this mode, 1-byte data is provided to determine the displacement from the existing program to which a program jumps can occur. The displacement is signed 2’s complemented number.

Extended Addressing Mode

In this mode, 2-byte data can be used after the opcode. These bytes can be an address for jump instructions, or an address where data can be stored.

Indexed Addressing Mode

In this mode, the byte after opcode is containing the displacement, that is added to one of the two index register (IX or IY, specified by the instruction) to generate a pointer to memory. Here also the displacement is signed 2’s complemented number.

Register Addressing Mode

Some instructions use the CPU registers directly for an operation. Then the register addressing mode is used. For an example, if we want to load the content of register B into Register C, we have to use instructions which are belonging in this mode.

Implied Addressing Mode

The implied addressing mode refers to operation in which the opcode automatically selects one or more CPU registers to do some operations. Like for the arithmetic or logical operations, the opcode selects the accumulator (register A) as the destination of results.

Register Indirect Addressing Mode

When an instruction is using 16-bit register pair, which holds the address of some values in the memory, then that kind of instructions are under the register indirect addressing mode.

For an example, in different cases, we use the HL pair to hold some addresses, and when we want to update the data which is located at the address stored by the HL pair, we use register indirect mode.

Bit Addressing Mode

In the Z-80 MPU, there are some bit set, reset, test instructions. Using this mode, it can select any memory location or CPU register for bit operations through register, register indirect or indexed addressing modes.

Updated on: 30-Jul-2019

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements