54faa60aca
Signed-off-by: Chloe M. <chloe@mensia.org>
20 lines
302 B
C
20 lines
302 B
C
/*
|
|
* 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_ */
|