#[no_mangle]
pub unsafe extern "C" fn _post_ebs_entry(
handoff_ptr: *const BootHandoff,
) -> !Expand description
Post-EBS entry point for ASM trampoline.
This is the Rust entry point called after:
- ExitBootServices() has been called
- Stack has been switched to pre-allocated stack
- Interrupts are disabled
§Arguments
handoff_ptr: Pointer to BootHandoff structure
§Returns
Never returns (enters main loop or panics)
§Safety
Must only be called from the ASM trampoline with correct setup.