From 42a2bdaecaee627247689b3f4ff2828fe3c8dc97 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Thu, 11 Sep 2025 14:37:04 -0400 Subject: load init from ELF executable --- include/device/processor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/device') diff --git a/include/device/processor.h b/include/device/processor.h index 33deed4..e0ec16c 100644 --- a/include/device/processor.h +++ b/include/device/processor.h @@ -1,9 +1,7 @@ #ifndef _JOVE_DEVICE_PROCESSOR_H #define _JOVE_DEVICE_PROCESSOR_H 1 -#if defined(__x86_64__) -#include "arch/x86_64/processor.h" -#endif +#include "object.h" /**@FUNC Initialize the bootstrap processor.*/ void bsp_setup(void); @@ -19,4 +17,6 @@ void processor_setup(void* processor); * @RET pointer to current processor.*/ void *processor_current(void); +objdir_t *processor_get_objdir(void *processor); + #endif -- cgit v1.2.1