mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
35 lines
1 KiB
Markdown
35 lines
1 KiB
Markdown
# Rust for the Game Boy Advance
|
|
|
|
This is my in development library for rust on the Game Boy Advance. It uses
|
|
information from GbaTek, Tonc, and the existing
|
|
[rust-console/gba](https://github.com/rust-console/gba).
|
|
|
|
Note that this currently contains no documentation of any kind, unless you count
|
|
examples as documentation.
|
|
|
|
## Build Requirements
|
|
|
|
* Nightly rust, probably quite a recent version.
|
|
* arm eabi binutils
|
|
* Debian and derivatives: `sudo apt install binutils-arm-none-eabi`
|
|
* Arch Linux and derivatives: `pacman -S arm-none-eabi-binutils`
|
|
|
|
## Test Requirements
|
|
|
|
* mgba 0.9.0
|
|
* mgba-test-runner
|
|
* Run `cargo install --path mgba-test-runner` inside this directory
|
|
|
|
## Real Hardware Build
|
|
|
|
* Need gbafix, rust implementation can be installed with `cargo install gbafix`.
|
|
* On compiled elf file, additionally need to
|
|
```bash
|
|
arm-none-eabi-objcopy -O binary {input-elf} {output-gba}
|
|
gbafix {output-gba}
|
|
```
|
|
|
|
## Stability
|
|
|
|
0% stable, I have no problems making drastic changes in the API in order to make
|
|
something nice to work with. |