Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://daid.github.io/rgbds-live
- Owner: gbdev
- License: mit
- Created: 2020-07-22T05:46:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T18:50:36.000Z (3 months ago)
- Last Synced: 2024-10-29T20:21:29.513Z (3 months ago)
- Language: JavaScript
- Homepage: https://gbdev.io/rgbds-live/
- Size: 10.5 MB
- Stars: 38
- Watchers: 9
- Forks: 10
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-gb-dev-zh - RGBDS-Live - 在浏览器编码环境中试用 RGBDS。 (软件开发 / 编译程序)
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
```