Gigatron TTL
Developer | Marcel van Kervinck and Walter Belgers |
---|---|
Type | computer |
Release date | March, 2018[1] |
CPU | 7400 series TTL chips |
Memory | 32 KB CMOS SRAM |
Storage |
|
Display | 160x120 px @ 59.98 Hz VGA with 64 colours |
Power | 5 V DC through USB |
The Gigatron TTL is a retro-style 8-bit computer, where the CPU is implemented by a set of TTL chips instead of a single microprocessor, imitating the hardware present in early arcades. Its target is the computing enthusiasts, for studying or hobby purposes.[2]
Architecture
[edit]The CPU is implemented through a small set of TTL 7400 series chips, running at 6.25 MHz base clock rate, that can be overclocked by providing better chips.[3] RAM can also be increased in the same way.
Three CPU modes are implemented:[4]
- 8-bit native assembly code, that implements a Harvard architecture. This mode offers 17 instructions and has room for up to 256 instructions: 8 ALU operations * 8 addressing modes * 4 bus modes. The ROM firmware and the vCPU interpreter are written in the 8-bit native assembly code.
- 16-bit vCPU interpreter, that implements a von Neumann architecture and has 34 instructions. It loads and runs programs from RAM. The integrated programs are written for this vCPU.
- MOS 6502 emulator (experimental), able to run MOS 6502 machine code.[5][6]
The video output is generated by the ROM firmware (native assembly code), and supports a resolution of 160x120 pixels with 64 colours stored in RAM starting at address 0x0800 and ending at 0x7F9F as 120 segments of 160 bytes of non-contiguous RAM. Pixels are stored as 1 byte per pixel in XXBBGGRR format, (the top 2 bits are unused and may be used by the programmer for their own usage). The video display contains a configurable number of black (empty) scanlines in order to save vCPU time for programs; these empty/black scanlines can be configured by the user to get more displayed raster scanlines or more vCPU time for user programs. Off-screen RAM begins at 0x08A0 and ends at 0x7FFF as 120 segments of 96 bytes of non-contiguous RAM; these fragmented sections of RAM may be used for storing data or code or for scrolling effects using the video indirection table. System RAM is trivially expandable from the default 32K to the full 16-bit addressable size of 64 KB.
The audio is also generated by the ROM firmware during horizontal blanking periods, providing 4 6-bit channels, (software mixed and output at 4-bit PCM), with 4 selectable and user-modifiable 64-byte waveforms stored in RAM, (re-generated at Cold Boot and for ROMv4 and above on all reboots), and providing simple amplitude and XOR modulation per channel.
Software
[edit]The programs are included in the ROM chip, and these are written in GCL (Gigatron Control Language), BASIC or vCPU.
The following programs are included:
- Snake, a simple version of the snake graphical game
- Racer, a Pole Position-like game
- Mandelbrot, a Mandelbrot set image generator
- Pictures, an image viewer for the pre-loaded pictures
- Tetronis, a Tetris clone
- Bricks, a Breakout clone
- TicTacToe, a text-mode tic-tac-toe written in BASIC
- BASIC, a Tiny BASIC interpreter
- WozMon, a Woz Monitor rendition
- Loader, a feature to load vCPU or BASIC programs over the joystick port
- Credits, shows the credits in text that change colours
The Tiny BASIC interpreter allows users to create programs, change the systems parameters, and load and save programs to the non-volatile memory in the built-in keyboard controller.
The software included is licensed under the 2-clause BSD license.[7]
Assembly kit
[edit]The microcomputer is sold as assembling kit,[8] that includes:
- A PCB.
- 7400 series TTL chips.
- A swappable EPROM chip and a socket (for firmware updates).
- A 32 KB CMOS SRAM (upgradable to a 64 KB chip)
- Game controller and VGA (D-SUB) ports.
- USB port and cable for power.
- A game controller similar to the NES one.
- A keyboard controller with built-in non-volatile memory.
- Resistors, capacitors and diodes.
- A set of 4 customisable LEDs.
- Instruction booklet.
- A wooden box for presentation and assembling.
The kit does not include a keyboard nor non-volatile memory. A keyboard controller connectable to the game controller port is shipped with a small built-in non-volatile memory, for storing BASIC programs. An Arduino board can be programmed for interacting between a computer and the microcomputer, as for programming, as well as for additional storage.
Availability
[edit]The kit was available for purchase at €149.50. The updates were provided through a new ROM chip, shipped as an update, that should be changed manually.[9] The original kits are no longer available due to the depletion of the stock and Marcel van Kervinck's death. However, a Dutch company is producing kits for €99.95.
There is also an emulator available online, able to load precompiled vCPU and Tiny BASIC programs.[10]
References
[edit]- ^ "Gigatron kits are shipping! | Details | Hackaday.io". hackaday.io. Retrieved 2019-04-15.
- ^ Barela, Anne (2018-12-05). "The Gigatron – a TTL microcomputer without a microprocessor #VintageComputing #8bit". Adafruit Industries - Makers, hackers, artists, designers and engineers!. Retrieved 2019-04-15.
- ^ "Data sheets – Gigatron". Retrieved 2020-01-02.
- ^ "FAQ – Gigatron". Retrieved 2020-01-02.
- ^ "Adding 6502 support | Details | Hackaday.io". hackaday.io. Retrieved 2020-01-03.[permanent dead link]
- ^ By (2019-07-03). "Emulating A 6502 In ROM". Hackaday. Retrieved 2020-01-02.
- ^ Kervinck, Marcel van (2019-04-14), GitHub - kervinck/gigatron-rom: System, embedded apps and tooling for Gigatron., retrieved 2019-04-15
- ^ "Gigatron! The TTL computer as a kit | Details | Hackaday.io". hackaday.io. Retrieved 2019-04-15.
- ^ "Gigatron TTL microcomputer". HomeComputerMuseum. Archived from the original on 2020-01-02. Retrieved 2020-01-02.
- ^ "Gigatron emulator". gigatron.io. Retrieved 2019-04-15.
External links
[edit]- Official website
- Source code at GitHub
- The 8-Bit Guy - The Gigatron TTL Computer without a Microprocessor on YouTube
- The 8-Bit Guy - The Gigatron Computer - New Features Update on YouTube
- Dave Jones - EEVblog #1080 on YouTube
- Ben Heck - Gigatron Part 1: Assembly on YouTube
- Hackaday - How the Gigatron TTL Microcomputer Works
- Hackaday - The No-CPU Computer Gets a C Compiler
- Hackaday - Emulating a 6502 in ROM