A very small but versatile Z80 system. Elektor 1992.
Mini Z80 System | |
RAM extension for Mini Z80 System |
About small SBC systems
A very small but versatile Z80 system. Elektor 1992.
Mini Z80 System | |
RAM extension for Mini Z80 System |
Simple EPROM programmer for the Z80 for 2716EPROMs. Published in January/February 1984.
Scan in Dutch, German and English.
Z80 CPU card for the EC65(K) Octopus system, to run CP/M
CP/M Z80 card articles in Dutch from EC 5 |
The German text is in Elektor Computing 5.
Z80_EPROM.bin EC65 Z80 card ROM
The original EPROM was 2732, the image is for 2764.
But it is just twice the code, so that upper address line does not matter.
Z80-A CPU card articles in Dutch, German and English May 1982 |
Build your Own Z80 Computer , by Steve Ciarca, full scanned book
A Z80 computer, able to run CP/M.
In this archive the scans of articles in Elektuur Computing 2.
The original Dutch and later international electronics magazine in thee arly microprocessor years did not only pay attention to the 6502, also SC/MP and Z80 were used in designs.
On this pages some of their Z80 articles.
While building the Retro Chip Tester, designed by Stephan Slabihoud, and documented on his 8bit-museum website, I noticed Stephan also designed CPU NOP testers and made designs as gerbers and BOM available. With the PCB of the Retro Chip tester I laso bought the PCB’s for 6502 and Z80 NOP tester from him. NOP testers are very simple test devices and in no way a real CPU stress test. Enough to discover if the IC is not a fake or severely damaged and not fit to be tested in a real system.
The idea of NOP testers is not new, for example Lee Davison documented his NOP tester for the 6502 here.
Stephan made the NOP testers standalone devices. Besides the socket for the CPU to test a clock signal is generated with a 555, a push-button does the reset, the minimal of control lines is connected to ground or puleld high, power is supplied with a USB connector.
The clock oscillator has a very low frequency, so you can see the address lines change by observing LEDs connected. This means the NMOS 6502 and Z80 are operated way below their minimal frequency, e.g. 100KHz for a 6502. The CMOS versions are static and can be driven with this low frequency.
In my experience with these testers is that the NMOS versions of 6502 and Z80 do work with this tester though, but I have seen good 6502’s start off well but after a minute crashed with all LEDs flashing in the tester. So not a definite test for NMOS! An interesting modification would be to have a higher clock frequency (1MHZ at least) and inspect all the address lines with an oscillosope.
Read the original articles and download Gerbers and BOM’s from the 8bit-museum.
6502 NOP Generator
Used in a 6502 NOP generator , a 6502 CPU only executes NOP commands (No Operation). The low eight address lines can be observed with the aid of LEDs. If the CPU executes the NOPs, the addresses should be continuously incremented. This does not allow a complete test of the CPU, but at least a quick-n-dirty check.
The 6502 NOP generator in action:
The 6502 NOP generator supplies the opcode 0xEA, which corresponds to a NOP for the 6502. After a reset, the 6502 NOP generator starts to count from address 0xEAEA (after a reset the CPU reads the real start address from addresses 0xFFFC-0xFFFD and since this always reads 0xEA, this is 0xEAEA). The LEDs should start counting at 11101010.
It is very nice to see how after the reset the addresses 0xFFFC and 0xFFFD are accessed first (before that a little initialization of the CPU), in order to then count from 0xEAEA (LEDs: FC, FD, E9, E7, EA, E9, FD, [FF] FC, [FF] FD, [EA] EA, EB, EC, ED, EE, EF, F0, F1 .., the upper 8 bits added in square brackets for understanding).
Changes for WDC65C02
While the 6502 NOP Generator has been designed for the 65C02 and 6502 pinout, it can be modified to work with the still available WDC65C02 variant. Differences between the variants are minor but essential:
VPB Vector-Pull output Pin1 must be left open, on the 6502 and 65C02 this is the (second) Ground pin, On the PCB pin 1 is connected to ground, easy to cut track, see the photo below.
Pin 36 BE (Bus Enable) Connect a resistor 10K to VCC. Easy to add on the bottom of the PCB. pin 36 is NC (Not Connected) on 6502 and 65C02.
The latest gerbers on teh site of 8bit-museum have these modifications!
Z80 NOP tester
When used in a Z80 NOP generator , a Z80 CPU only executes NOP commands (No Operation). The low address lines can be observed with the aid of eight LEDs. If the CPU executes the NOPs, the addresses should be continuously incremented. This does not allow a complete test of the CPU, but at least a quick-n-dirty check.
The NOP generator presented here only works with Z80 CPUs. Since the CPU is clocked very slowly, far outside the specification, it is quite possible that an actually functional CPU does not work with the NOP generator. The way it works is very simple: The data lines are pulled to ground by pull-down resistors, so that the CPU reads a NOP (opcode 0x00) when the memory is read. After a reset, the CPU starts executing these commands from address 0.
Z80 Retrocomputer building kit (Budgetronics.eu)
A build of Grant Searle’s famous simple Z80 design
http://searle.x10host.com/z80/SimpleZ80_32K.html
Parts are as expected from Grant’s design, except the EPROM, which is a 27C04012JC. in a PLCC case. A bit overkill (512Mb for a 8K ROM!) but cheap I suspect.
The ROM contents are the Nascom Basic adapted by Grant for a serial terminal. A typical Microsoft Basic of the early microcomputer days.
Connect a serial terminal, e.g. an USB TTL Serial cable to the PCB, start Tera term (Windows) or Minicom (linux), set the serial port to the COM/xTTYUSBxx port, speed 57600, no hardware handshake (or to hardware control connect if CTS to RTS connection available). If no hardware handshake, then you will have to adapt the delays after receiving character (1ms) and line (20ms) to prevent overruns on uploading Basic program text file. For me this worked out in Tera Term as shown in the next screenshot:
Without any storage facilities this computer is really only usable with a PC as terminal emulator to send files, as if the charaters in the file were typed in.
The same for saving, grab the ASCII output (the log facility in Tera Term for example).
Nice compact design, works perfect within its limitations.
A program, SerialTester, a guide and test results.