2018-12-15 16:57:14 +11:00
|
|
|
# No Std
|
|
|
|
|
|
|
|
First up, as you already saw in the `hello_magic` code, we have to use the
|
|
|
|
`#![no_std]` outer attribute on our program when we target the GBA. You can find
|
|
|
|
some info about `no_std` in two official sources:
|
|
|
|
|
|
|
|
* [unstable
|
|
|
|
book section](https://doc.rust-lang.org/unstable-book/language-features/lang-items.html#writing-an-executable-without-stdlib)
|
|
|
|
* [embedded
|
|
|
|
book section](https://rust-embedded.github.io/book/intro/no-std.html?highlight=no_std#a--no_std--rust-environment)
|
|
|
|
|
|
|
|
The unstable book is borderline useless here because it's describing too many
|
|
|
|
things in too many words. The embedded book is much better, but still fairly
|
|
|
|
terse.
|
|
|
|
|
|
|
|
## Bare Metal
|
|
|
|
|
|
|
|
The GBA falls under what the Embedded Book calls "Bare Metal Environments".
|
|
|
|
Basically, the machine powers on and immediately begins executing some ASM code.
|
|
|
|
Our ASM startup was provided by `Ketsuban` (check the `crt0.s` file). We'll go
|
|
|
|
over _how_ it works much later on, for now it's enough to know that it does
|
2018-12-16 04:39:43 +11:00
|
|
|
work, and eventually control passes into Rust code.
|
2018-12-15 16:57:14 +11:00
|
|
|
|
|
|
|
On the rust code side of things, we determine our starting point with the
|
|
|
|
`#[start]` attribute on our `main` function. The `main` function also has a
|
|
|
|
specific type signature that's different from the usual `main` that you'd see in
|
|
|
|
Rust. I'd tell you to read the unstable-book entry on `#[start]` but they
|
|
|
|
[literally](https://doc.rust-lang.org/unstable-book/language-features/start.html)
|
|
|
|
just tell you to look at the [tracking issue for
|
|
|
|
it](https://github.com/rust-lang/rust/issues/29633) instead, and that's not very
|
|
|
|
helpful either. Basically it just _has_ to be declared the way it is, even
|
|
|
|
though there's nothing passing in the arguments and there's no place that the
|
|
|
|
return value will go. The compiler won't accept it any other way.
|
|
|
|
|
|
|
|
## No Standard Library
|
|
|
|
|
|
|
|
The Embedded Book tells us that we can't use the standard library, but we get
|
|
|
|
access to something called "libcore", which sounds kinda funny. What they're
|
|
|
|
talking about is just [the core
|
|
|
|
crate](https://doc.rust-lang.org/core/index.html), which is called `libcore`
|
|
|
|
within the rust repository for historical reasons.
|
|
|
|
|
|
|
|
The `core` crate is actually still a really big portion of Rust. The standard
|
|
|
|
library doesn't actually hold too much code (relatively speaking), instead it
|
|
|
|
just takes code form other crates and then re-exports it in an organized way. So
|
|
|
|
with just `core` instead of `std`, what are we missing?
|
|
|
|
|
|
|
|
In no particular order:
|
|
|
|
|
|
|
|
* Allocation
|
|
|
|
* Clock
|
|
|
|
* Network
|
|
|
|
* File System
|
|
|
|
|
|
|
|
The allocation system and all the types that you can use if you have a global
|
|
|
|
allocator are neatly packaged up in the
|
|
|
|
[alloc](https://doc.rust-lang.org/alloc/index.html) crate. The rest isn't as
|
|
|
|
nicely organized.
|
|
|
|
|
|
|
|
It's _possible_ to implement a fair portion of the entire standard library
|
|
|
|
within a GBA context and make the rest just panic if you try to use it. However,
|
|
|
|
do you really need all that? Eh... probably not?
|
|
|
|
|
|
|
|
* We don't need a file system, because all of our data is just sitting there in
|
|
|
|
the ROM for us to use. When programming we can organize our `const` data into
|
|
|
|
modules and such to keep it organized, but once the game is compiled it's just
|
2018-12-16 04:41:59 +11:00
|
|
|
one huge flat address space. TODO: Parasyte says that a FS can be handy even
|
|
|
|
if it's all just ReadOnly, so we'll eventually talk about how you might set up
|
|
|
|
such a thing I guess, since we'll already be talking about replacements for
|
|
|
|
three of the other four things we "lost". Maybe we'll make Parasyte write that
|
|
|
|
section.
|
2018-12-15 16:57:14 +11:00
|
|
|
* Networking, well, the GBA has a Link Cable you can use to communicate with
|
|
|
|
another GBA, but it's not really like a unix socket with TCP, so the standard
|
|
|
|
Rust networking isn't a very good match.
|
|
|
|
* Clock is actually two different things at once. One is the ability to store
|
|
|
|
the time long term, which is a bit of hardware that some gamepaks have in them
|
|
|
|
(eg: pokemon ruby/sapphire/emerald). The GBA itself can't keep time while
|
|
|
|
power is off. However, the second part is just tracking time moment to moment,
|
|
|
|
which the GBA can totally do. We'll see how to access the timers soon enough.
|
|
|
|
|
|
|
|
Which just leaves us with allocation. Do we need an allocator? Depends on your
|
|
|
|
game. For demos and small games you probably don't need one. For bigger games
|
|
|
|
you'll maybe want to get an allocator going eventually. It's in some sense a
|
|
|
|
crutch, but it's a very useful one.
|
|
|
|
|
|
|
|
So I promise that at some point we'll cover how to get an allocator going.
|
|
|
|
Either a Rust Global Allocator (if practical), which would allow for a lot of
|
|
|
|
the standard library types to be used "for free" once it was set up, or just a
|
|
|
|
custom allocator that's GBA specific if Rust's global allocator style isn't a
|
|
|
|
good fit for the GBA (I honestly haven't looked into it).
|
|
|
|
|
2018-12-16 10:50:04 +11:00
|
|
|
## LLVM Intrinsics
|
|
|
|
|
|
|
|
TODO: explain that we'll occasionally have to provide some intrinsics.
|
|
|
|
|
2018-12-15 16:57:14 +11:00
|
|
|
## Bare Metal Panic
|
|
|
|
|
|
|
|
TODO: expand this
|
|
|
|
|
|
|
|
* Write `0xC0DE` to `0x4fff780` (`u16`) to enable mGBA logging. Write any other
|
|
|
|
value to disable it.
|
|
|
|
* Read `0x4fff780` (`u16`) to check mGBA logging status.
|
|
|
|
* You get `0x1DEA` if debugging is active.
|
|
|
|
* Otherwise you get standard open bus nonsense values.
|
|
|
|
* Write your message into the virtual `[u8; 255]` array starting at `0x4fff600`.
|
|
|
|
mGBA will interpret these bytes as a CString value.
|
|
|
|
* Write `0x100` PLUS the message level to `0x4fff700` (`u16`) when you're ready
|
|
|
|
to send a message line:
|
|
|
|
* 0: Fatal (halts execution with a popup)
|
|
|
|
* 1: Error
|
|
|
|
* 2: Warning
|
|
|
|
* 3: Info
|
|
|
|
* 4: Debug
|
|
|
|
* Sending the message also automatically zeroes the output buffer.
|
|
|
|
* View the output within the "Tools" menu, "View Logs...". Note that the Fatal
|
|
|
|
message, if any doesn't get logged.
|