Questions tagged [z80]

The Z80 is an 8-bit CPU designed by Zilog to be a backwards-compatible enhancement of the Intel 8080. It has been in continuous wide use since 1976 and was formerly popular in microcomputers, such as models of the Tandy (Radio Shack) TRS-80 microcomputer and their derivatives, the ZX Spectrum and the MSX standard. Presently its main use is in embedded systems.

Resources on the Internet:

The Zilog Z80 CPU User Manual

Rodnay Zaks wrote a classic book on the Z80: Programming the Z80

See also:

182 questions
-3
votes
1 answer

z80 assembly if statement

Given the following C code: int a=8; if (a==8) ... will the equivalent in z80 assembly be the code below? ld a, 8 cp 8
gameloverr
  • 53
  • 1
  • 8
-4
votes
1 answer

How do I find value of register and flags in Assembler?

Programmcode | Zero-Flag | Sign-Flag | Register A | Register HL | 0 | 0 | 00h | 00 00h --------------|-----------|-----------|------------|------------ MOV HL, 00ffh | | | | DEC…
Rahul
  • 5
  • 3
1 2 3
12
13