mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Use println! to print the `Hello World!
This commit is contained in:
14
src/lib.rs
14
src/lib.rs
@@ -19,23 +19,13 @@
|
|||||||
extern crate rlibc;
|
extern crate rlibc;
|
||||||
extern crate spin;
|
extern crate spin;
|
||||||
|
|
||||||
|
#[macro_use]
|
||||||
mod vga_buffer;
|
mod vga_buffer;
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub extern fn rust_main() {
|
pub extern fn rust_main() {
|
||||||
// ATTENTION: we have a very small stack and no guard page
|
// ATTENTION: we have a very small stack and no guard page
|
||||||
|
println!("Hello World{}", "!");
|
||||||
let hello = b"Hello World!";
|
|
||||||
let color_byte = 0x1f; // white foreground, blue background
|
|
||||||
|
|
||||||
let mut hello_colored = [color_byte; 24];
|
|
||||||
for (i, char_byte) in hello.into_iter().enumerate() {
|
|
||||||
hello_colored[i*2] = *char_byte;
|
|
||||||
}
|
|
||||||
|
|
||||||
// write `Hello World!` to the center of the VGA text buffer
|
|
||||||
let buffer_ptr = (0xb8000 + 1988) as *mut _;
|
|
||||||
unsafe { *buffer_ptr = hello_colored };
|
|
||||||
|
|
||||||
loop{}
|
loop{}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user