A-Z80 CPU - Implementation of the Venerable Zilog Z80 Processor

Details
Category: Processor
Created: December 12, 2014
Updated: January 27, 2020
Language: Verilog
Other project properties
Development Status: Stable
Additional info: Design done, FPGA proven, Specification done
WishBone compliant: No
WishBone version: n/a
License: LGPL
Description
Update: Rewritten in pure Verilog, the CPU can now be used on both Altera and Xilinx devices!
A-Z80 is a conceptual implementation of the venerable Zilog Z80 processor targeted to synthesize and run on a modern FPGA device. It differs from the existing (mostly Verilog) Z80 implementations in that it is designed from the ground-up through the schematics and low-level gates. It is a result of a research and tedious reverse-engineering of Z80 at all levels, including micro-photographs of a die.
Features
- Cycle and bus accurate including the correct behavior of nWAIT and nBUSRQ
- All documented and undocumented opcodes, flags and registers, including R, WZ
- Following the actual arcitectural model down to the individual gates and registers for some modules
- Passes ZEXDOC and ZEXLL (except quirky OTIR/LDIR for IX,IY)
- Correct behavior of BIT n,(HL) to expose WZ
- All interrupts modes (IM0,IM1,IM2)
- Slow Model fMax is 18 MHz, could be run even faster when optimized
Testbench
RTL Simulation
Design is simulated using ModelSim.
- Each module contains a ModelSim project
- Contain individual SystemVerilog test files
- Test wave (*.do) files to quickly set up views
Framework is also developed around the Fuse tests (low-level Z80 CPU) that run each Z80 instruction on the ModelSim and automatically compare to the expected Fuse test result files. Mis-matches are flagged.
There is a "quick" sanity test as well as a much longer comprehensive test.
Top-level Simulation
ZMAC assember is used to generate Z80 program test snippets which are then run in the simulation and on the actual FPGA hardware. The resulting files should match.
This level of tests adds UART to the ModelSim and FPGA implementation so the tests can be run and outputs compared.
Tests include:
- Tests for various complex instructions like DAA, NEG
- Classic "Hello, World" application
- Tests for interrupt behavior
- ...and more tests embedded in *.asm test files
Implementation
Several complete and working FPGA designs illustrate implementation and test the A-Z80 on both Altera and Xilinx devices:
Basic Computer using keyboard and UART to run Z80 tests
Complete implementation of a Sinclair ZX Spectrum
Running ZEXDOC and ZEXALL tests on a Basic Computer implementation:
Status
This design is fully completed, tested and working.