Compare commits

..

No commits in common. "745b574bd677fc2eca0877ded867ba937dcc4d68" and "16e1bc308f5dbb8ff214ec4e245855ce03b2fb75" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View file

@ -18,8 +18,6 @@ pub extern "C" fn _start() -> ! {
// called on panic // called on panic
#[panic_handler] #[panic_handler]
fn panic(info: &PanicInfo) -> ! { fn panic(_info: &PanicInfo) -> ! {
println!("{}", info);
loop {} loop {}
} }

View file

@ -97,6 +97,7 @@ pub fn _print(args: fmt::Arguments) {
WRITER.lock().write_fmt(args).unwrap(); WRITER.lock().write_fmt(args).unwrap();
} }
impl Writer { impl Writer {
pub fn write_byte(&mut self, byte: u8) { pub fn write_byte(&mut self, byte: u8) {
match byte { match byte {