started work on lib_application - progress limited as requires alloc support to make further progress

This commit is contained in:
2025-02-21 16:13:06 +00:00
parent e626a3bcf2
commit f0e25c7a5d
9 changed files with 52 additions and 2 deletions
+5 -1
View File
@@ -4,7 +4,7 @@
use core::arch::asm;
use lib_serial::{serial_println, serial_read};
use lib_ascii::{println, WRITER};
use lib_ascii::{print, println, WRITER};
use limine::request::{RequestsEndMarker, RequestsStartMarker};
use limine::BaseRevision;
@@ -63,6 +63,10 @@ unsafe extern "C" fn kmain() -> ! {
\\______/ \\______/ \\_/ \\______|
");
for i in 0u8..128 {
print!("{}", i as char);
}
hcf();
}