working acpi table parsing

This commit is contained in:
Zoe
2024-01-19 22:58:48 -06:00
parent 361cfc49fe
commit 7b5f42f76a
22 changed files with 1171 additions and 458 deletions

View File

@@ -20,6 +20,8 @@ pub fn print_stack_trace(max_frames: usize, rbp: u64) {
let instruction_pointer = unsafe { (*stackframe).rip };
crate::print!(" {:#X} ", instruction_pointer);
let instrcution_info = get_function_name(instruction_pointer);
if let Ok((function_name, function_offset)) = instrcution_info {