adding std io idk

This commit is contained in:
2025-02-24 15:33:42 +00:00
parent 2cbe9641aa
commit d5b15826e2
6 changed files with 12 additions and 4 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ use x86_64::instructions::interrupts;
use super::framebuffer::{colour::Colour, display::FRAMEBUFFER_WRITER};
use crate::resources::font::{FONT_CP850_8X16, Font};
use crate::resources::font::{FONT_SPLEEN_8X16, Font};
static FONT_WIDTH: u32 = 8;
static FONT_HEIGHT: u32 = 16;
@@ -47,7 +47,7 @@ impl Writer {
panic!("Framebuffer writer not initialized.");
},
|writer| Self {
font: &FONT_CP850_8X16,
font: &FONT_SPLEEN_8X16,
screen_width: writer.width() / 8,
screen_height: writer.height() / 16,
text_line: 0,