Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rust-console/gba
A crate that helps you make GBA games
https://github.com/rust-console/gba
gba rust
Last synced: about 1 month ago
JSON representation
A crate that helps you make GBA games
- Host: GitHub
- URL: https://github.com/rust-console/gba
- Owner: rust-console
- License: apache-2.0
- Created: 2018-11-08T03:23:10.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-27T19:11:03.000Z (7 months ago)
- Last Synced: 2024-05-28T04:45:59.473Z (7 months ago)
- Topics: gba, rust
- Language: Rust
- Homepage: https://docs.rs/gba
- Size: 5.9 MB
- Stars: 623
- Watchers: 14
- Forks: 50
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
- awesome-gba-dev-zh - Rust-控制台 - Rust 中的 GBA 编程,外加教程。 (工具包)
- awesome-gbadev - rust-console - GBA programming in Rust, plus tutorial. (Toolkits / Other places)
- my-awesome - rust-console/gba - 12 star:0.7k fork:0.1k A crate that helps you make GBA games (Rust)
README
# `gba`
# [Docs.rs Documentation](https://docs.rs/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`:
```toml
[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-weak-intrinsics"]
```