stos/amd64: mp: Add multiprocessing groundwork

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-27 14:25:19 -05:00
parent ad11d304d1
commit 54faa60aca
4 changed files with 116 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: MP bringup HAL layer
* Author: Chloe M.
*/
#ifndef _HAL_MP_H_
#define _HAL_MP_H_ 1
#include <stdef.h>
/*
* Bring the application processors up
*/
VOID HalMpBringUp(VOID);
#endif /* !_HAL_MP_H_ */