From fc93078d3f1d0f023bbb0d1130c39fb433fd6c88 Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 17 Feb 2025 17:48:28 -0800 Subject: [PATCH] Format --- bootloader/bootloader/src/os/bios/macros.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bootloader/bootloader/src/os/bios/macros.rs b/bootloader/bootloader/src/os/bios/macros.rs index a8d28d4..ae7f698 100644 --- a/bootloader/bootloader/src/os/bios/macros.rs +++ b/bootloader/bootloader/src/os/bios/macros.rs @@ -1,16 +1,16 @@ /// Print to console #[macro_export] macro_rules! print { - ($($arg:tt)*) => ({ - use core::fmt::Write; - let _ = write!($crate::os::VGA.lock(), $($arg)*); - }); + ($($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)*)); + () => (print!("\n")); + ($fmt:expr) => (print!(concat!($fmt, "\n"))); + ($fmt:expr, $($arg:tt)*) => (print!(concat!($fmt, "\n"), $($arg)*)); }