Booter part placed

dev
tihgs 2024-10-04 10:07:40 +08:00
parent bb5670218d
commit dba3c96c95
1 changed files with 20 additions and 0 deletions

20
boot.c 100644
View File

@ -0,0 +1,20 @@
#include <stdio.h>
/*
Copyright (C) 2024 tihgs
License: GNU GPL-2.0-or-later
This is free software: you are free to change and redistribute it
Contact me at:
Email - tihgs@mail.i2p
*/
int main(){
printf("Starting the program...\n");
//Next line here is just pseudocode
if (return == 0){
printf("Success");
}
else{
printf("Failed");
}
return 0;
}