Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/kernel/entry/kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
31 changes: 31 additions & 0 deletions target/usr/include/root32.h
Original file line number Diff line number Diff line change
@@ -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.
};