agb/template
2023-04-11 20:09:05 +01:00
..
.cargo modify all other configs to be able to compile with arm 2022-08-01 17:36:41 +01:00
src Update the template to have testing available 2022-07-25 22:49:18 +01:00
.gitignore Add gitignore for template 2021-11-24 22:42:55 +00:00
Cargo.toml Reduce codegen units to 1 to ensure build works 2023-04-05 17:06:56 +01:00
gba.ld Add shstrtab section for lld 2023-04-02 20:39:38 +01:00
gba_mb.ld Add shstrtab section for lld 2023-04-02 20:39:38 +01:00
README.md Replace references to gbafix with agb-gbafix 2023-04-11 20:09:05 +01:00
rust-toolchain.toml Add rustfmt as a component to rust-toolchain 2023-03-23 22:17:02 +00:00

AGBRS template

A basic template example for agb projects

This makes getting started with a new project for the Game Boy Advance in rust really simple, by providing all the boiler plate files for you.

Building

Prerequisites

You will need the following installed in order to build and run this project:

  • A recent version of rustup. See the rust website for instructions for your operating system
  • arm-none-eabi-binutils for assembling and linking
    • Windows: GNU Arm Embedded Toolchain. Make sure you select "Add path to environment variable" during the install
    • Debian and derivatives (e.g. Ubuntu, raspberry pi OS, linux mint): sudo apt install binutils-arm-none-eabi
    • Arch linux and derivatives: sudo pacman -S arm-none-eabi-binutils

You will also want to install an emulator. The best support in agb is with mgba, with println! support via agb::println! but any emulator should work. You'll get the best experience if mgba-qt is in your PATH.

If you want to run your game on real hardware, you will also need to install agb-gbafix which you can do after installing rust with the following: cargo install agb-gbafix. This is not required if you are only running your game in an emulator.

Running in an emulator

Once you have the prerequisites installed, you should be able to build using

cargo build

or in release mode (recommended for the final version to ship to players)

cargo build --release

The resulting file will be in target/thumbv4t-none-eabi/debug/<your game> or target/thumbv4t-none-eabi/release/<your game> depending on whether you did a release or debug build.

If you have mgba-qt in your path, you will be able to run your game with

cargo run

or in release mode

cargo run --release

Starting development

You can find the documentation for agb here.

You may also want to change the package name and version in Cargo.toml before you start.

Shipping a .gba file for real hardware

To make a game run on real hardware, you will need to convert the built file into a file suitable for running on the real thing.

First build the binary in release mode using the instructions above, then do the following:

agb-gbafix target/thumbv4t-none-eabi/release/<your game> -o <your game>.gba