Remove striped output example again

This commit is contained in:
Philipp Oppermann
2023-07-09 11:29:33 +02:00
parent cf28a5fdf9
commit 54e41b79a5

View File

@@ -9,10 +9,8 @@ bootloader_api::entry_point!(kernel_main);
fn kernel_main(boot_info: &'static mut BootInfo) -> ! {
if let Some(framebuffer) = boot_info.framebuffer.as_mut() {
let mut value = 0x90;
for byte in framebuffer.buffer_mut() {
*byte = value;
value = value.wrapping_add(1);
*byte = 0x90;
}
}
loop {}