https://github.com/ryanwebber/wordboy
A Wordle clone for the GameBoy Advance
https://github.com/ryanwebber/wordboy
Last synced: 5 months ago
JSON representation
A Wordle clone for the GameBoy Advance
- Host: GitHub
- URL: https://github.com/ryanwebber/wordboy
- Owner: ryanwebber
- Created: 2024-12-11T19:46:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-19T23:24:55.000Z (over 1 year ago)
- Last Synced: 2025-02-20T00:29:56.797Z (over 1 year ago)
- Language: Rust
- Size: 370 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WordBoy
A Wordle clone for the GameBoy Advance written in no-std rust.

## Building
To build a ROM, you'll need the `arm-none-eabi` rust toolchain, which can be found
[here](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads). With the toolchain installed
and in your `PATH`, you can build the project by simply running:
```sh
cargo build
```
Alternatively, you can run the OS in an emulator such as [mGBA](https://mgba.io) by running:
```sh
CARGO_TARGET_THUMBV4T_NONE_EABI_RUNNER= cargo run
```