diff --git a/src/kernel/entry/kernel.c b/src/kernel/entry/kernel.c index 4c79edc9..4bb874a5 100644 --- a/src/kernel/entry/kernel.c +++ b/src/kernel/entry/kernel.c @@ -93,9 +93,10 @@ void _start(void) { printf("[warning] System disk has not been detected!\n"); printf("=========================================\n"); - printf("== Cave-Like Operating System ==\n"); - printf("== Copyright MalwarePad 2025 ==\n"); + printf("= Cave-Like Operating System =\n"); + printf("= Copyright MalwarePad 2025 =\n"); printf("=========================================\n\n"); + printf("\n"); while (1) run("/bin/bash", true, 0, 0); diff --git a/target/usr/include/root32.h b/target/usr/include/root32.h new file mode 100644 index 00000000..790f6417 --- /dev/null +++ b/target/usr/include/root32.h @@ -0,0 +1,31 @@ +#define _ROOT_32_ + +/* + + Root32 module for the CavOS. + file: root32.h + + + Made by Anti-Corporate (C) 2026-2027. + + + + + + */ + +#include "bootloader.h" +#include "limine.h" +#include "printf.h" +#include "linux.h" +#define TIME_VOLATILE volatile static void +// Can i use void, static and volatile at the same time? +// Uh, i think yes. + +TIME_VOLATILE KEWrite(char *arg_serial[]) + // This stands for Kernel Write. +{ + printf(arg_serial, 0x0d, 0x0a, 0x00); + // different of other prints, this one can only print a + // full string. +};