(args: ::core::fmt::Arguments)
| 75 | |
| 76 | #[doc(hidden)] |
| 77 | pub fn _print(args: ::core::fmt::Arguments) |
| 78 | { |
| 79 | use core::fmt::Write; |
| 80 | use x86_64::instructions::interrupts; |
| 81 | |
| 82 | interrupts::without_interrupts(|| |
| 83 | { |
| 84 | SER.lock().write_fmt(args).expect("[ERR] FAILED TO PRINT TO SERIAL"); |
| 85 | }); |
| 86 | } |
| 87 | |
| 88 | |
| 89 | // Initialize |