d79b33f5be
Signed-off-by: Chloe M. <chloe@mensia.org>
21 lines
334 B
C
21 lines
334 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: Multi-processing HAL layer
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _HAL_MP_H_
|
|
#define _HAL_MP_H_ 1
|
|
|
|
#include <ptdef.h>
|
|
|
|
/*
|
|
* Bring up all application processors on a multicore
|
|
* system.
|
|
*/
|
|
VOID HalMpBootstrap(VOID);
|
|
|
|
#endif /* !_HAL_MP_H_ */
|