This commit is contained in:
Lokathor 2018-11-18 13:09:23 -07:00
parent 7554244523
commit 06e8e61eb2
2 changed files with 4 additions and 2 deletions

View file

@ -3,6 +3,8 @@
[![crates.io](https://img.shields.io/crates/v/gba.svg)](https://crates.io/crates/gba) [![crates.io](https://img.shields.io/crates/v/gba.svg)](https://crates.io/crates/gba)
[![docs.rs](https://docs.rs/gba/badge.svg)](https://docs.rs/gba/latest/gba/) [![docs.rs](https://docs.rs/gba/badge.svg)](https://docs.rs/gba/latest/gba/)
* [![Built with cargo-make](https://sagiegurari.github.io/cargo-make/assets/badges/cargo-make.svg)](https://sagiegurari.github.io/cargo-make)
# gba # gba
A crate that helps you make GBA games A crate that helps you make GBA games

View file

@ -22,9 +22,9 @@ operations are enforced to happen in the exact order that you specify them, but
only relative to other volatile operations. So something like only relative to other volatile operations. So something like
```rust ```rust
c.volatile_write(5); c.write_volatile(5);
a += b; a += b;
d.volatile_write(7); d.write_volatile(7);
``` ```
might end up changing `a` either before or after the change to `c` (since the might end up changing `a` either before or after the change to `c` (since the