Crates.io | gba |
lib.rs | gba |
version | 0.13.1 |
source | src |
created_at | 2018-11-11 07:50:28.506596 |
updated_at | 2024-10-21 23:57:22.53574 |
description | A crate for 'raw' style GBA development. If you want a 'managed' experience, try the `agb` crate instead. |
homepage | |
repository | https://github.com/rust-console/gba |
max_upload_size | |
id | 96037 |
size | 623,971 |
gba
This crate is intended for working with the GBA.
To build for the GBA you'll need to use build-std
and you'll also need to
activate the compiler-builtins-weak-intrinsics
feature.
The following should be somewhere in your .cargo/config.toml
:
[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-weak-intrinsics"]