Zilog Z80: Difference between revisions
mNo edit summary |
m (→Registers) |
||
Line 134: | Line 134: | ||
The [[refresh register]] ('''R''') provides the computer the capability of refreshing [[dynamic access memory]], as it increments every fetch of an opcode or opcode prefix. | The [[refresh register]] ('''R''') provides the computer the capability of refreshing [[dynamic access memory]], as it increments every fetch of an opcode or opcode prefix. | ||
The [[interrupt vector register]] ('''I''') is used when the interrupt mode is IM2, to set the upper 8 bits of the [[interrupt vector]]. When an interrupt is received in this mode, a byte will be passed by the interrupting device | The [[interrupt vector register]] ('''I''') is used when the interrupt mode is IM2, to set the upper 8 bits of the [[interrupt vector]]. When an interrupt is received in this mode, a byte will be passed by the interrupting device. The byte passed by the interrupting device will be combined with the interrupt vector register shifted by 8 to form the complete 16-bit address to the vector table. When interrupt modes IM0 and IM1 are used, the interrupt vector register can be used as a limited extra register. | ||
[[Category:Zilog Microprocessors]] | [[Category:Zilog Microprocessors]] | ||
[[Category:8-bit microprocessors]] | [[Category:8-bit microprocessors]] |
Revision as of 00:52, 5 November 2023
General information | |
---|---|
Launched | March 1976 |
Common manufacturer(s) | |
Performance | |
Max. CPU clock rate | 2.5 MHz to 20 MHz |
Data width | 8 bits |
Address width | 16 bits |
Architecture and classification | |
Instruction set | Z80 |
Physical specifications | |
Package(s) | |
Socket(s) |
|
History | |
Predecessor(s) | |
Successor(s) |
The Zilog Z80 is an 8-bit processor that is a software-compatible extension of the Intel 8080. In addition to having a binary compatible ISA to the 8080, the processor offered many different improvements which allowed the Z80 to become the most widely used CPUs in desktop and home computers from the 1970s to the mid-1980s.
Design
Registers
|
There are seven 8-bit general registers (A, B, C, D, E, H and L) where A is the primary 8-bit accumulator, eight shadow registers (A', F', B', C', D', E', H' and L'), two 16-bit index registers (IX and IY), two external control registers (I, and R) and one status register. The six general registers can be used as either individual 8-bit registers or in three 16-bit register pairs (BC, DE and HL) depending on the particular instruction. Specific instructions allow the use of accessing the lower and upper bytes of the two 16-bit index registers (as IXL, IXH, IYL and IYH respectively).
The AF' register is the only shadow register which can be used as a parameter. The AF' shadow register can only be used with the EX AF, AF'
instruction. The other three remaining shadow registers can be exchanged at once using the EXX
instruction.
The refresh register (R) provides the computer the capability of refreshing dynamic access memory, as it increments every fetch of an opcode or opcode prefix.
The interrupt vector register (I) is used when the interrupt mode is IM2, to set the upper 8 bits of the interrupt vector. When an interrupt is received in this mode, a byte will be passed by the interrupting device. The byte passed by the interrupting device will be combined with the interrupt vector register shifted by 8 to form the complete 16-bit address to the vector table. When interrupt modes IM0 and IM1 are used, the interrupt vector register can be used as a limited extra register.