yboot: pick higher fb resolutions

This commit is contained in:
2025-05-17 11:22:14 +03:00
parent 8c4a882766
commit 2fcf800cc8
6 changed files with 31 additions and 32 deletions
+3 -5
View File
@@ -1,4 +1,4 @@
#![feature(decl_macro, naked_functions)]
#![feature(decl_macro)]
#![no_std]
extern crate alloc;
@@ -60,11 +60,9 @@ impl CpuData for PerCpuData {
}
}
#[naked]
#[unsafe(naked)]
extern "C" fn idle_task(_: usize) -> ! {
unsafe {
core::arch::naked_asm!("1: nop; j 1b");
}
core::arch::naked_asm!("1: nop; j 1b");
}
impl ArchitectureImpl {