Downloads View on GitHub

gomeboycolor

Gameboy Color emulator, golang edition

“Yet another emulator?”

There is no point beating around the bush, people have written Gameboy emulators before with great success, however I’ve always been curious as to how they are done. This project was set up as a learning exercise to help me understand how the basic principles of how computers function at the lowest level and how you can simulate them in software.

Since then it’s become my side project and I feel I’m at a point where I can share it with the world.

Features

  • Cross platform support for 64-bit Windows, Linux and OSX operating systems, binaries available here
  • Supports most of the traditional black and white Gameboy ROMs
  • Supports most Gameboy Color ROMs with colour support (and black and white mode for supported GBC titles if desired)
  • Battery saves facility, with compressed save files for lightweight storage
  • Six screen resolutions
  • Passes all blargg CPU instruction and instruction timing tests
  • Delightful emulation of the scrolling Nintendo “boot screen” when you load the emulator up (can be disabled)
This project is still under active development so there will inevitably be ROMs out there that don’t work (yet) or have bugs.
Gameboy Color features are mostly done but there are a few outstanding tasks remaining

Screenshots

  • Tetris DX
  • The Lion King
  • Mario Tennis
  • Warioland 2
  • Pokemon Yellow
  • Zelda

Downloads

OS Arch Version Download link
Linux x86_64 v0.0.7_alpha download
Mac OSX x86_64 v0.0.7_alpha download
Windows x86_64 v0.0.7_alpha download

About

The emulator is written entirely in go. Why? It’s fast, it’s fun to code in, has great tooling and is really simple to pick up. It also has a history of people writing emulators in, maybe it’s the next “Hello World”?

I started working on this after reading Code: The Hidden Language of Computer Hardware and Software* by Charles Petzold, a delightful read that takes you through the history of how computers came to be and how they function, right from the days of telegraph relays to the modern transistor. This book inspired me to investigate further and what better way to do it than writing your own computer? Well, technically it’s Nintendo’s computer, implemented in software.

People have often asked me how challenging it is to actually write an emulator that works, and as it turns out, it really isn’t that difficult. However, it’s immensely frustrating, baffling, tedious, anger inducing, soul crushing, boring, exciting, challenging and thankfully hugely rewarding. A journey of highs and lows with sometimes very little to show for it, but as soon as all the pieces start to fall into place and you see your software boot into its own environment all by itself, a small bubble of pride makes it all worthwhile.

The project is open sourced under the MIT license, details of which you can view here.

* This is an Amazon referral link, if you don’t feel comfortable with this, you are welcome to use the non-referral link here

Roadmap

  • Sound. I’ve been putting this off for quite some time but as I get nearer to feature complete status, this is the next priority (see #10)
  • More game support. Memory bank controller MBC2 is currently unsupported, along with a few other cartridge types
  • GUI based launcher with ROM and RAM saves administration (see #35)

Documentation

Installing

Installation involves simply unzipping the downloaded ZIP file to a location of your choice. *nix based distributions can add the bin directory to their PATH if desired

Running

To launch the emulator, simply invoke the executable with the location of a ROM file on your machine, e.g.

./gomeboycolor ~/location/to/my/romfile.gbc

Usage

You can pass some optional flags to the emulator (before the ROM file argument) that change some parameters of how the emulator runs, details of these are as follows

Usage: -

To launch the emulator, simply run and pass it the location of your ROM file, e.g. 

	gomeboycolor location/of/romfile.gbc

Flags: -

	-help			->	Show this help message
	-skipboot		->	Disables the boot sequence and will boot you straight into the ROM you have provided. Defaults to false
	-color			->	Turns color GB features on. Defaults to true
	-showfps		->	Prints average frames per second to the console. Defaults to false
	-dump			->	Dump CPU state after every cycle. Will be very SLOW and resource intensive. Defaults to false
	-size=(1-6)		->	Set screen size. Defaults to 1.
	-title=(title)		->	Change window title. Defaults to 'gomeboycolor'.

You can pass an option argument to the boolean flags if you want to enable that particular option. e.g. to disable the boot screen you would do the following

	gomeboycolor -skipboot=false location/of/romfile.gbc

Controls

up arrow	- move up
down arrow	- move down
left arrow	- move left
right arrow	- move right
Z		- A button
X		- B button
Enter		- Start
Right shift	- Select

Storage

The emulator will create a directory under your home directory for storing ROM saves and other settings. So for Windows this would be something like

C:\Users\joebloggs\.gomeboycolor

Or on OSX/Linux

~/.gomeboycolor

You can optionally create the file config.json and store it under there. This will allow you to set the defaults for the flags so you don’t need to keep providing them when running the emulator. An example file is detailed below

{
	"Title":"gomeboycolor",
	"ScreenSize":2,
	"ColorMode":true,
	"SkipBoot":true,
	"DisplayFPS":false
}

Future plans will negate the need for storing lots of items in this folder as I plan to move it to a small database such as sqlite.