Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://daid.github.io/rgbds-live

A live Gameboy programming environment in the browser, allowing for realtime assembly programming for the gameboy.
https://daid.github.io/rgbds-live

Last synced: 23 days ago
JSON representation

A live Gameboy programming environment in the browser, allowing for realtime assembly programming for the gameboy.

Awesome Lists containing this project

README

        

# rgbds-live

A live RGBDS programming environment in the browser, allowing for realtime assembly programming for the Game Boy. Powered by webassembly builds of [RGBDS](https://rgbds.gbdev.io/) and the [Binjgb](https://github.com/binji/binjgb) emulator.

Try online at [gbdev.io/rgbds-live](https://gbdev.io/rgbds-live/).

## Build

System requirements:

- bison, cmake
- [emscripten](https://emscripten.org/docs/getting_started/downloads.html)

Make sure you initialize submodules to be able to build the WebAssembly modules:

```bash
# Pull RGBDS-live, rgbds and binjgb sources
git clone https://github.com/gbdev/rgbds-live --recursive
# Do a full build
./build.sh
```

To start hacking, use the development server:
```bash
# Development server with live refresh:
npm run dev
```