mirror of
https://github.com/italicsjenga/gba.git
synced 2024-12-24 03:11:29 +11:00
signature fix
This commit is contained in:
parent
1834876cb7
commit
8bd4dfa939
|
@ -42,8 +42,8 @@
|
||||||
//! * **Make Your Executables:** At this point you can make a `bin` or an
|
//! * **Make Your Executables:** At this point you can make a `bin` or an
|
||||||
//! `example` file. Every executable will need to be `#![no_std]` and
|
//! `example` file. Every executable will need to be `#![no_std]` and
|
||||||
//! `#![no_main]`. They will also need a `#[panic_handler]` defined, as well
|
//! `#![no_main]`. They will also need a `#[panic_handler]` defined, as well
|
||||||
//! as a `#[no_mangle] extern "C" main() -> !` function, which is what the
|
//! as a `#[no_mangle] extern "C" fn main() -> ! {}` function, which is what
|
||||||
//! assembly runtime will call to start your Rust program after it fully
|
//! the assembly runtime will call to start your Rust program after it fully
|
||||||
//! initializes the system.
|
//! initializes the system.
|
||||||
//!
|
//!
|
||||||
//! ```rust
|
//! ```rust
|
||||||
|
|
Loading…
Reference in a new issue