2021-11-16 00:09:27 -06:00
|
|
|
pub struct Stdout;
|
2021-11-23 05:53:06 -06:00
|
|
|
use core::fmt::{Arguments, Error};
|
2021-11-16 00:09:27 -06:00
|
|
|
impl Stdout {
|
|
|
|
pub fn write_fmt(&mut self, arg: Arguments<'_>) /*-> Result<(), Error> */
|
|
|
|
{
|
|
|
|
core::fmt::Write::write_fmt(self, arg);
|
|
|
|
// Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl core::fmt::Write for Stdout {
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
fn write_str(&mut self, s: &str) -> Result<(), Error> {
|
|
|
|
// Don't actually print anything yet lmao
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
fn write_str(&mut self, s: &str) -> Result<(), Error> {
|
|
|
|
use crate::kprint;
|
|
|
|
// FIXME: causes issues
|
|
|
|
kprint!("{}", s);
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-11-17 08:42:54 -06:00
|
|
|
#[cfg(target_arch = "riscv64")]
|
|
|
|
fn write_str(&mut self, s: &str) -> Result<(), Error> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-11-16 00:09:27 -06:00
|
|
|
}
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! print {
|
|
|
|
() => {
|
|
|
|
::core::writeln!($crate::print::Stdout, "")
|
|
|
|
};
|
|
|
|
($($tt:tt)*) => {
|
|
|
|
::core::write!($crate::print::Stdout, $($tt)*)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! println {
|
|
|
|
() =>{
|
|
|
|
// ::core::writeln!($crate::print::Stdout, "\n")
|
|
|
|
panic![];
|
|
|
|
};
|
|
|
|
($($tt:tt)*) => {
|
|
|
|
::core::writeln!($crate::print::Stdout, $($tt)*)
|
|
|
|
// panic![];
|
|
|
|
};
|
|
|
|
}
|