mirror of
https://github.com/italicsjenga/gba.git
synced 2024-12-23 19:01:30 +11:00
fixes
This commit is contained in:
parent
7554244523
commit
06e8e61eb2
|
@ -3,6 +3,8 @@
|
|||
[![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/)
|
||||
|
||||
* [![Built with cargo-make](https://sagiegurari.github.io/cargo-make/assets/badges/cargo-make.svg)](https://sagiegurari.github.io/cargo-make)
|
||||
|
||||
# gba
|
||||
|
||||
A crate that helps you make GBA games
|
||||
|
|
|
@ -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
|
||||
|
||||
```rust
|
||||
c.volatile_write(5);
|
||||
c.write_volatile(5);
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue