All Projects → drhelius → demo-emulator

drhelius / demo-emulator

Licence: GPL-3.0 license
Nintendo Game Boy emulator written in Go to be used in workshops about emulator programming

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to demo-emulator

khedgb
Experiments in Game Boy emulation
Stars: ✭ 15 (-63.41%)
Mutual labels:  gameboy, gameboy-emulator, emulation, emulator-programming
worldwide
A toy GameBoy Color emulator written in golang.
Stars: ✭ 563 (+1273.17%)
Mutual labels:  gameboy, gameboy-emulator, emulation
Mgba
mGBA Game Boy Advance Emulator
Stars: ✭ 3,355 (+8082.93%)
Mutual labels:  gameboy, gameboy-emulator, game-boy
mealybug-tearoom-tests
🪲☕️ Game Boy emulator test ROMs
Stars: ✭ 40 (-2.44%)
Mutual labels:  gameboy, gameboy-emulator, game-boy
SkyEmu
Game Boy, Game Boy Color, and Game Boy Advanced Emulator
Stars: ✭ 59 (+43.9%)
Mutual labels:  gameboy, gameboy-emulator, emulation
CrystalBoy
C# GameBoy Emulator
Stars: ✭ 93 (+126.83%)
Mutual labels:  gameboy, gameboy-emulator, emulation
RGB
RGB (Rust Game Boy) is a simple emulator for the original game boy
Stars: ✭ 19 (-53.66%)
Mutual labels:  gameboy, gameboy-emulator, emulation
Gbemu
A Gameboy emulator in modern C++
Stars: ✭ 149 (+263.41%)
Mutual labels:  gameboy, gameboy-emulator
Metroboy
MetroBoy - A playable, circuit-level simulation of an entire Game Boy
Stars: ✭ 169 (+312.2%)
Mutual labels:  gameboy, gameboy-emulator
Vaporboy
Gameboy / Gameboy Color Emulator PWA built with Preact. ⚛️ Powered by wasmBoy. 🎮Themed with VaporWave. 🌴🐬
Stars: ✭ 182 (+343.9%)
Mutual labels:  gameboy, emulation
Jitboy
A Game Boy emulator with dynamic recompilation (JIT)
Stars: ✭ 190 (+363.41%)
Mutual labels:  gameboy, gameboy-emulator
Gopher Boy
🎮 A Game Boy emulator written in Go
Stars: ✭ 206 (+402.44%)
Mutual labels:  gameboy, gameboy-emulator
Goboy
Multi-platform Nintendo Game Boy Color emulator written in Go
Stars: ✭ 2,403 (+5760.98%)
Mutual labels:  gameboy, gameboy-emulator
Giibiiadvance
A GB, GBC and GBA emulator with GB Camera support.
Stars: ✭ 141 (+243.9%)
Mutual labels:  gameboy, gameboy-emulator
Gbemu
WebAssembly based Gameboy Emulator
Stars: ✭ 120 (+192.68%)
Mutual labels:  gameboy, gameboy-emulator
emu-gameboy
A Gameboy emulator written in C++
Stars: ✭ 55 (+34.15%)
Mutual labels:  gameboy, gameboy-emulator
Cryboy
A Game Boy (Color) emulator written in Crystal
Stars: ✭ 68 (+65.85%)
Mutual labels:  gameboy, gameboy-emulator
Wasmboy
Game Boy / Game Boy Color Emulator Library, 🎮written for WebAssembly using AssemblyScript. 🚀Demos built with Preact and Svelte. ⚛️
Stars: ✭ 963 (+2248.78%)
Mutual labels:  gameboy, gameboy-emulator
Awesome Gbdev
Contribute
Stars: ✭ 3,016 (+7256.1%)
Mutual labels:  gameboy, gameboy-emulator
Rustyboy
A Gameboy emulator written in Rust.
Stars: ✭ 224 (+446.34%)
Mutual labels:  gameboy, gameboy-emulator

demo-emulator Build Status

Copyright © 2016 by Ignacio Sanchez

Nintendo Game Boy emulator written in Go to be used in workshops about emulator programming.

Follow me on Twitter for updates: http://twitter.com/drhelius

Screenshot Screenshot

Presentation

https://speakerdeck.com/drhelius/8-bit-emulator-programming-with-go

Requirements

Before you start, make sure you have Go installed and ready to build applications: https://golang.org/doc/install

Once you have a working Go environment you'll need to install the following dependecies:

Windows

Linux

  • Ubuntu: sudo apt-get install build-essential libgl1-mesa-dev xorg-dev
  • Fedora: sudo dnf install @development-tools libX11-devel libXcursor-devel libXrandr-devel libXinerama-devel mesa-libGL-devel libXi-devel

Mac OS X

  • You need Xcode or Command Line Tools for Xcode (xcode-select --install) for required headers and libraries.

Building

Run this command to let Go download and build the sources. You don't even need to clone this repo, Go will do it for you:

go get -u github.com/drhelius/demo-emulator

Running

Once built you can find the emulator binary in $GOPATH/bin. Use it with the -rom argument in order to load a Game Boy ROM file:

$GOPATH/bin/demo-emulator -rom path/to/your_rom.gb

Controls

START = Enter
SELECT = Space
A = S
B = A
Pad = Cursors

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].