From 84a4b4b89b6a4d21f3f449d95c80a1b63d6e8967 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Sat, 9 Feb 2019 12:50:00 -0700 Subject: [PATCH] Explain this better because even I forgot --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index d263a3a..4d6701e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -133,6 +133,9 @@ extern "C" { /// Memory in IWRAM _before_ this location is not free to use, you'll trash /// your globals and stuff. Memory here or after is freely available for use /// (careful that you don't run into your own stack of course). + /// + /// The actual value is unimportant, you just want to use the _address of_ + /// this location as the start of your IWRAM usage. static __bss_end: u8; }