General Info
This project will involve creating a computer using a Z80 CPU and various other modern and older pieces of hardware. In the final product it would be nice to have an actual display and keyboard interface of some form.
Why do this
Quite frankly, you really begin to understand computers if you work with one this old and simple. Being able to physically analyze the address lines, data lines and ctrl signals really helps with understanding computers as a whole. Also it is a good project to collaborate with as there are a lot of sub modules that need to be worked on.
Current Hardware
- Z80 CPU @ 6 MHZ Z84C0006PEG
- 256K EEPROM AT28C256
- 256M SRAM CY62256NLL
Main Schematic for the base Hardware setup:
Effectively, the above schematic describes the basics needed for a simple computer. A reset system, a clock generation, and a CPU, ROM and RAM are all present in the above schematic.
IO Expander:
Given that IO expanders are bit more difficult to get for the z80, I decided to rig up an older arduino to be used as an expander. For now, an arduino uno was selected which does limit the number of address lines but this will be addressed eventually when I switch the expander over to a Arduino Mega.
Schematic for IO Expander
This schematic just gives an idea of how the io expander is currently hooked up to the rest of the CPU.
Function of the IO Expander
In the link Z80 Datasheet, it gives a good idea of the timing diagram for IO Read or Write. Regardless of which state of IO interaction, the interaction is started by a falling_edge of the IORQ so the Arduino uno uses this as a interrupt in order to start sequence. Also it should be noted that the clocks are not synced between the Uno and Z80 so this could cause some problems later on but for simple IO interactions it should be fine given that the arduino should almost always finish before the end of the IO Cycle.
IO Timing Diagram
Helpful Resources:
Datasheets:
Misc:
Repos: