diff --git a/Cargo.toml b/Cargo.toml index 62eb617..47881c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,7 @@ edition = "2018" license = "Apache2" [dependencies] +gba-proc-macro = "0.1" [profile.release] lto = true diff --git a/src/lib.rs b/src/lib.rs index e913049..453f6fd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,6 +14,7 @@ //! **Do not** use this crate in programs that aren't running on the GBA. If you //! do, it's a giant bag of Undefined Behavior. +pub(crate) use gba_proc_macro::bit_register; //pub mod macros; // un-comment once we get some pub mod core_extras;