diff --git a/bootloader/bootloader/src/main.rs b/bootloader/bootloader/src/main.rs index 92073c1..a6c4b65 100644 --- a/bootloader/bootloader/src/main.rs +++ b/bootloader/bootloader/src/main.rs @@ -3,7 +3,6 @@ #![feature(int_roundings)] #![feature(lang_items)] #![allow(internal_features)] -#![feature(let_chains)] extern crate alloc; @@ -11,6 +10,8 @@ use self::os::{OsMemoryEntry, OsMemoryKind}; #[macro_use] mod os; + +#[macro_use] mod serial; //TODO: allocate this in a more reasonable manner diff --git a/bootloader/bootloader/src/os/bios/macros.rs b/bootloader/bootloader/src/os/bios/macros.rs deleted file mode 100644 index ae7f698..0000000 --- a/bootloader/bootloader/src/os/bios/macros.rs +++ /dev/null @@ -1,16 +0,0 @@ -/// Print to console -#[macro_export] -macro_rules! print { - ($($arg:tt)*) => ({ - use core::fmt::Write; - let _ = write!($crate::os::VGA.lock(), $($arg)*); - }); -} - -/// Print with new line to console -#[macro_export] -macro_rules! println { - () => (print!("\n")); - ($fmt:expr) => (print!(concat!($fmt, "\n"))); - ($fmt:expr, $($arg:tt)*) => (print!(concat!($fmt, "\n"), $($arg)*)); -} diff --git a/bootloader/bootloader/src/os/bios/mod.rs b/bootloader/bootloader/src/os/bios/mod.rs index 1de57a6..97bc541 100644 --- a/bootloader/bootloader/src/os/bios/mod.rs +++ b/bootloader/bootloader/src/os/bios/mod.rs @@ -5,10 +5,8 @@ use crate::serial_println; use self::memory_map::memory_map; use self::thunk::ThunkData; -use self::vga::Vga; -#[macro_use] -mod macros; +use crate::println; mod memory_map; mod panic; @@ -34,7 +32,7 @@ pub unsafe extern "C" fn start( thunk15: extern "C" fn(), _thunk16: extern "C" fn(), ) -> ! { - serial_println!("Entered Rust, serial ready."); + println!("Entered Rust, serial ready."); { // Make sure we are in mode 3 (80x25 text mode) diff --git a/bootloader/bootloader/src/os/bios/panic.rs b/bootloader/bootloader/src/os/bios/panic.rs index 97b3506..688398d 100644 --- a/bootloader/bootloader/src/os/bios/panic.rs +++ b/bootloader/bootloader/src/os/bios/panic.rs @@ -4,6 +4,8 @@ use core::alloc::Layout; use core::arch::asm; use core::panic::PanicInfo; +use crate::println; + #[lang = "eh_personality"] #[no_mangle] pub extern "C" fn rust_eh_personality() {} diff --git a/bootloader/bootloader/src/serial.rs b/bootloader/bootloader/src/serial.rs index 5c24529..5553985 100644 --- a/bootloader/bootloader/src/serial.rs +++ b/bootloader/bootloader/src/serial.rs @@ -40,7 +40,7 @@ pub fn _print(args: core::fmt::Arguments<'_>) { /// Prints to the host through the serial interface. #[macro_export] -macro_rules! serial_print { +macro_rules! print { ($($arg:tt)*) => { $crate::serial::_print(format_args!($($arg)*)); }; @@ -48,9 +48,9 @@ macro_rules! serial_print { /// Prints to the host through the serial interface, appending a newline. #[macro_export] -macro_rules! serial_println { - () => ($crate::serial_print!("\n")); - ($fmt:expr) => ($crate::serial_print!(concat!($fmt, "\n"))); - ($fmt:expr, $($arg:tt)*) => ($crate::serial_print!( +macro_rules! println { + () => ($crate::print!("\n")); + ($fmt:expr) => ($crate::print!(concat!($fmt, "\n"))); + ($fmt:expr, $($arg:tt)*) => ($crate::print!( concat!($fmt, "\n"), $($arg)*)); }