-
Notifications
You must be signed in to change notification settings - Fork 227
/
main.rs
60 lines (53 loc) · 997 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#![no_std]
#![allow(ctypes)]
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,
}
enum Option<T> {
None,
Some(T)
}
struct IntRange {
cur: int,
max: int
}
impl IntRange {
fn next(&mut self) -> Option<int> {
if self.cur < self.max {
self.cur += 1;
Some(self.cur - 1)
} else {
None
}
}
}
fn range(lo: int, hi: int) -> IntRange {
IntRange { cur: lo, max: hi }
}
fn clear_screen(background: Color) {
for i in range(0, 80 * 25) {
unsafe {
*((0xb8000 + i * 2) as *mut u16) = (background as u16) << 12;
}
}
}
#[no_mangle]
#[no_split_stack]
pub fn main() {
clear_screen(LightRed);
}