2021-03-07 04:58:59 +11:00
|
|
|
#![no_std]
|
|
|
|
#![feature(start)]
|
|
|
|
|
|
|
|
extern crate gba;
|
|
|
|
|
|
|
|
use gba::display;
|
|
|
|
|
|
|
|
#[start]
|
|
|
|
fn main(_argc: isize, _argv: *const *const u8) -> isize {
|
2021-03-08 12:59:05 +11:00
|
|
|
let mut gba = gba::Gba::new();
|
2021-03-07 04:58:59 +11:00
|
|
|
|
2021-03-08 14:48:13 +11:00
|
|
|
let mut bitmap = gba.display.video.bitmap3();
|
2021-03-07 04:58:59 +11:00
|
|
|
let mut input = gba::input::ButtonController::new();
|
|
|
|
|
|
|
|
loop {
|
|
|
|
input.update();
|
2021-03-07 07:09:23 +11:00
|
|
|
// if A is pressed, draw out of range
|
2021-03-07 04:58:59 +11:00
|
|
|
if input.is_just_pressed(gba::input::Button::A) {
|
|
|
|
bitmap.draw_point(display::WIDTH, 0, 0x05);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|