mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
You don't need extern crate agb; any more
This commit is contained in:
parent
e601cc53ca
commit
60e78768a4
|
@ -1,7 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
extern crate alloc;
|
||||
|
||||
use alloc::boxed::Box;
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::sound;
|
||||
|
||||
#[agb::entry]
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::display;
|
||||
|
||||
struct Vector2D {
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::display;
|
||||
|
||||
#[agb::entry]
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
use agb::{
|
||||
display::{background::Map, object::ObjectStandard, HEIGHT, WIDTH},
|
||||
input::Button,
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::input::{Button, ButtonController, Tri};
|
||||
use agb::number::Num;
|
||||
use agb::sound::mixer::SoundChannel;
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::display;
|
||||
|
||||
struct Vector2D {
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
#[agb::entry]
|
||||
fn main() -> ! {
|
||||
let count = agb::interrupt::Mutex::new(0);
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::display;
|
||||
|
||||
#[agb::entry]
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::sound::mixer::SoundChannel;
|
||||
use agb::{include_wav, Gba};
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
use agb::{display, syscall};
|
||||
|
||||
#[agb::entry]
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::display::example_logo;
|
||||
|
||||
#[agb::entry]
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
|
||||
use agb::{
|
||||
display::example_logo,
|
||||
interrupt::{Interrupt, Mutex},
|
||||
|
|
|
@ -27,8 +27,6 @@ const TILE_SPRITE: MemoryMapped1DArray<u32, { 1024 * 8 }> =
|
|||
/// # #![no_std]
|
||||
/// # #![no_main]
|
||||
/// #
|
||||
/// # extern crate agb;
|
||||
/// #
|
||||
/// # use agb::Gba;
|
||||
/// #
|
||||
/// # #[agb::entry]
|
||||
|
@ -63,8 +61,6 @@ struct ObjectLoan<'a> {
|
|||
/// # #![no_std]
|
||||
/// # #![no_main]
|
||||
/// #
|
||||
/// # extern crate agb;
|
||||
/// #
|
||||
/// # use agb::Gba;
|
||||
/// use agb::display::object::Size;
|
||||
///
|
||||
|
|
|
@ -122,9 +122,6 @@ pub use agb_image_converter::include_gfx;
|
|||
/// #![no_std]
|
||||
/// #![no_main]
|
||||
///
|
||||
/// // Required to set panic handlers
|
||||
/// extern crate agb;
|
||||
///
|
||||
/// use agb::Gba;
|
||||
///
|
||||
/// #[agb::entry]
|
||||
|
@ -198,8 +195,6 @@ static mut GBASINGLE: single::Singleton<Gba> = single::Singleton::new(unsafe { G
|
|||
/// #![no_std]
|
||||
/// #![no_main]
|
||||
///
|
||||
/// extern crate agb;
|
||||
///
|
||||
/// use agb::Gba;
|
||||
///
|
||||
/// #[agb::entry]
|
||||
|
|
|
@ -10,10 +10,6 @@
|
|||
// which won't be a particularly clear error message.
|
||||
#![no_main]
|
||||
|
||||
// This is required in order to ensure that the panic handler defined in `agb` is set
|
||||
// up correctly.
|
||||
extern crate agb;
|
||||
|
||||
use agb::display::object::Size;
|
||||
use agb::Gba;
|
||||
|
||||
|
|
|
@ -19,7 +19,6 @@ Replace the content of the `main` function with the following:
|
|||
```rust,ignore
|
||||
# #![no_std]
|
||||
# #![no_main]
|
||||
# extern crate agb;
|
||||
# #[agb::entry]
|
||||
# fn main() -> ! {
|
||||
let mut gba = agb::Gba::new();
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
extern crate agb;
|
||||
extern crate alloc;
|
||||
|
||||
mod rng;
|
||||
|
|
|
@ -10,10 +10,6 @@
|
|||
// which won't be a particularly clear error message.
|
||||
#![no_main]
|
||||
|
||||
// This is required in order to ensure that the panic handler defined in `agb` is set
|
||||
// up correctly.
|
||||
extern crate agb;
|
||||
|
||||
use agb::{display, syscall};
|
||||
|
||||
// The main function must take 0 arguments and never return. The agb::entry decorator
|
||||
|
|
Loading…
Reference in a new issue