Reset source code to master again

This commit is contained in:
Philipp Oppermann
2016-05-28 14:09:01 +02:00
parent 08540eb602
commit e4b42b106f
6 changed files with 8 additions and 345 deletions

View File

@@ -135,15 +135,3 @@ struct ScreenChar {
struct Buffer {
chars: [[ScreenChar; BUFFER_WIDTH]; BUFFER_HEIGHT],
}
pub unsafe fn print_error(fmt: fmt::Arguments) {
use core::fmt::Write;
let mut writer = Writer {
column_position: 0,
color_code: ColorCode::new(Color::Red, Color::Black),
buffer: Unique::new(0xb8000 as *mut _),
};
writer.new_line();
writer.write_fmt(fmt);
}