diff --git a/service/ptos/ke/init.c b/service/ptos/ke/init.c index f31db49..3b49e5d 100644 --- a/service/ptos/ke/init.c +++ b/service/ptos/ke/init.c @@ -8,10 +8,21 @@ #include #include +#include #include #include #include +/* + * Display the copyright for legal reasons + */ +static VOID +Copyright(VOID) +{ + TRACE("~ Plural Technology ~\n"); + TRACE("Copyright (c) 2026, Chloe M., et al\n"); +} + /* * Starting here is where the world is brought up and system * components are initialized. @@ -24,4 +35,7 @@ KiKernelInit(VOID) /* Initialize the serial driver */ HalSerialInit(); + + /* Display the copyright */ + Copyright(); }