feat: change font and release greate tty output

This commit is contained in:
Faynot
2026-06-26 22:07:16 +03:00
parent 3f87a93d52
commit b59779ca4a
13 changed files with 183 additions and 139 deletions

View File

@@ -71,7 +71,7 @@ impl BitmapPMM {
*PMM.lock() = Some(pmm);
}
// ── Core operations ───────────────────────────────────────────────────────
//Core operations
/// Mark a frame as free. Idempotent (double-free is a no-op, not UB).
pub fn free_frame(&mut self, phys_addr: PhysAddr) {
@@ -175,7 +175,7 @@ impl BitmapPMM {
}
}
// ── Module-level convenience functions ───────────────────────────────────────
//Module-level convenience functions
pub fn alloc_frame() -> Option<PhysAddr> {
PMM.lock().as_mut()?.alloc_frame()