* .
* more updates, much more to do soon.
* hello world works again.
* fix key interrupts.
* remove the old book
* don't forget timers.
* we can just use search, duh.
* cleanup
* more bios
* finished most mmio, finished bios.
* dump some old macros that shouldn't have been pub to begin with.
* Update README.md
* for now, just make this a u16
* timers
* fix hello_world
* timer fix
* docs on timers
* block resetting work ram for now.
* put preserves_flags on bios calls as appropriate
* add a code page 437 tile sheet.
* docs.
* sound :( it's all bad but we'll fix it in 0.5
* move most backup files back into the lib.
* CI might work now?
* fix up non-serial examples.
* oops, gotta check out the repo.
* readme.
* Simplify build process
- Remove dependencies on DevkitPro
- Use linker similarly to min-gba
- Update cargo.toml so that dev builds will build
- Update cargo config so that std builds can run without the linker for
testing purposes
- Update CI flow to remove xbuild dependency
* Add windows toolchain install
* Add windows section to toolchain install instructions
* Remove cargo-xbuild dev dependency
As of Rust nightly 2020-07-15, we can set the default build target
and build-std feature of cargo instead of relying on cargo-xbuild.
Since the thumbv4-non-agb target is the default for all cargo commands,
change the Rust snippets in Makefile.toml to cross-platform duckscript.
The only uglyness we're left with is running the unit tests. We want to
build and run the tests on the host archetecture. Create three platform
overrides for Mac, Windows, Linux and set flags to override the default
target triple and build-std option.
* remove uneeded attribute
From cargo: "the feature `cfg_target_vendor` has been stable since
1.33.0 and no longer requires an attribute to enable"