This commit is contained in:
Lokathor 2018-12-08 01:53:37 -07:00
parent 6e89a16bbf
commit 9c547a62b1
3 changed files with 20 additions and 12 deletions

View file

@ -16,7 +16,7 @@ before_script:
- cargo install-update -a - cargo install-update -a
script: script:
# Obtain the devkitPro tools, using target as a temp directory # Obtain the devkitPro tools, using `target/` as a temp directory
- mkdir -p target - mkdir -p target
- cd target - cd target
- wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb - wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb

View file

@ -1,12 +1,16 @@
# Rust GBA Guide
* Introduction * Introduction
* Goals Of This Book * Reader Requirements
* Prerequisites * Book Goals and Style
* Getting Outside Help * Getting Outside Help
* Development Setup * Development Setup
* Hello Magic * Hello Magic
* Volatile * GBA Limitations
* No Floats
* Core Only * Core Only
* Volatile Destination
* Broad Concepts * Broad Concepts
* BIOS * BIOS
* Working RAM * Working RAM
@ -16,13 +20,13 @@
* Object Attribute Memory * Object Attribute Memory
* Game Pak ROM / Flash ROM * Game Pak ROM / Flash ROM
* Save RAM * Save RAM
* Video Modes * Video
* RBG15 Color * RBG15 Color
* Bitmap Modes * Bitmap Modes
* Tiled Modes * Tiled Modes
* Affine Math * Affine Math
* Special Effects * Special Effects
* Non-Video Hardware * Non-Video
* Buttons * Buttons
* Timers * Timers
* Direct Memory Access * Direct Memory Access
@ -31,4 +35,7 @@
* Network * Network
* Game Pak * Game Pak
* Examples * Examples
* for example in example_list * hello_magic
* hello_world
* light_cycle
* bg_demo

View file

@ -2,6 +2,7 @@
#![cfg_attr(not(test), feature(asm))] #![cfg_attr(not(test), feature(asm))]
#![warn(missing_docs)] #![warn(missing_docs)]
#![allow(clippy::cast_lossless)] #![allow(clippy::cast_lossless)]
#![deny(clippy::float_arithmetic)]
//! This crate helps you write GBA ROMs. //! This crate helps you write GBA ROMs.
//! //!