diff --git a/src/debugger.rs b/src/debugger.rs index 23dfc3b..aa99dbe 100644 --- a/src/debugger.rs +++ b/src/debugger.rs @@ -1,6 +1,13 @@ use crate::paging::{RmmA, RmmArch}; +#[cfg(not(target_arch = "x86_64"))] +pub unsafe fn debugger(target_id: Option) { + println!("DEBUGGER TODO"); + println!(); +} + // Super unsafe due to page table switching and raw pointers! +#[cfg(target_arch = "x86_64")] pub unsafe fn debugger(target_id: Option) { println!("DEBUGGER START"); println!();