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

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

Awesome Lists containing this project

README

          

# WordBoy

A Wordle clone for the GameBoy Advance written in no-std rust.

![Screenshot](.github/screenshot.png)

## 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
```