aec7ddb4a2
Signed-off-by: Chloe M. <chloe@mensia.org>
32 lines
514 B
C
32 lines
514 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: Where your machine gets turned on~
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#include <ex/trace.h>
|
|
#include <hal/serial.h>
|
|
#include <stdef.h>
|
|
|
|
/*
|
|
* Display a boot banner
|
|
*/
|
|
static VOID
|
|
BootBanner(VOID)
|
|
{
|
|
TRACE("Machine has been turned on~\n");
|
|
TRACE("Booting SystemPaw3 !! <3\n");
|
|
}
|
|
|
|
VOID
|
|
KiKernelEntry(VOID)
|
|
{
|
|
/* Initialize the serial driver */
|
|
HalSerialInit();
|
|
|
|
/* Write the boot banner */
|
|
BootBanner();
|
|
}
|