Skip to content

Uzebox/uzebox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Uzebox logo

The Uzebox is an open source, retro-minimalist game console design. It is based on an AVR 8-bit general purpose microcontroller made by Atmel. The particularity of the system is that it's based on an interrupt driven engine and has no frame buffer. Functions such as video sync generation, tile rendering and music mixing is done realtime in software by a background task so games can easily be developed in C. The design goal was to be as simple as possible yet have good enough sound and graphics while leaving enough resources to implement interesting games. Emphasis was put on making it easy and fun to assemble and program for any hobbyists. The final design contains only two chips: an ATmega644 and an AD725 RGB-to-NTSC converter.

Many commercial versions were available: The Uzebox AVCore by Embedded Engineering llc and the Fuzebox by Adafruit Industries. There was also the Uzebox deluxe kit and the EUzebox, a version with a SCART interface.

Features:

  • Interrupt driven: No cycle counting required, sound mixing and video generation are all made in the background
  • 5 channels sound engine: The sound subsystem is composed of 3 wavetable channels, 1 noise and 1 PCM channel. Sound is 8-bit mono, mixed at ~15Khz
  • 256 simultaneous colors arranged in a 3:3:2 color space (Red:3 bits, Green:3 bits, Blue: 2 bits)
  • Resolution: 10+ video modes offering up to 360x224 pixels (tiles-only, tiles & sprites, and bitmap video modes)
  • Full screen scrolling in certain video modes
  • Sprites: 32+ simultaneous sprites
  • Inputs supported: Two SNES compatible joypad inputs (including SNES mouse)
  • MIDI IN: With a music sequencer, allows the creation of music directly on the console
  • SD/MicroSD and FAT16/32 support
  • 'Uzenet' extension for ESP8266 wifi and 128KB SPI RAM
  • PS/2 keyboard interface
  • Bootloader5 allows you to flash games from a standard FAT16/32 formatted SD card
  • Cross-platform emulator with GDB support to ease development
  • Multiple tools to convert MIDI, sound file and graphics to include files

The sources come complete with fully functional games, demos, content generation tools and even a cross-platform emulator!

To find out more, please check out the project's sites:

  • Getting started: How to install the toolchains, IDEs and build the codebase. Then move on to tutorials and the rest of the documentation.
  • Main website: The main hub with news, links, downloads and more.
  • Wiki: All the project's documentation.
  • Forums: Share your new game and discuss everything Uzebox.