forked from haileys/rustboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.rs
43 lines (38 loc) · 765 Bytes
/
main.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#[allow(ctypes)];
#[no_std];
#[no_core];
mod zero;
enum Color {
Black = 0,
Blue = 1,
Green = 2,
Cyan = 3,
Red = 4,
Pink = 5,
Brown = 6,
LightGray = 7,
DarkGray = 8,
LightBlue = 9,
LightGreen = 10,
LightCyan = 11,
LightRed = 12,
LightPink = 13,
Yellow = 14,
White = 15,
}
fn range(lo: uint, hi: uint, it: &fn(uint)) {
let mut iter = lo;
while iter < hi {
it(iter);
iter += 1;
}
}
unsafe fn clear_screen(background: Color) {
range(0, 80*25, |i| {
*((0xb8000 + i * 2) as *mut u16) = (background as u16) << 12;
});
}
#[no_mangle]
pub unsafe fn main() {
clear_screen(LightRed);
}