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
10 changes: 10 additions & 0 deletions target/usr/include/exfn.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <stdio.h>
#include <string.h>

void write(char msg[]) {
printf("%s\n", msg);
}

int signal(int num) {
return num;
}