CoolPotOS/apps/init/init.c

11 lines
130 B
C
Raw Normal View History

2024-08-31 12:36:49 +08:00
#include "../include/stdio.h"
2024-08-31 01:23:06 +08:00
2024-08-14 21:58:29 +08:00
void hlt(){
while (1);
2024-07-30 22:50:03 +08:00
}
2024-07-14 00:54:27 +08:00
int main(){
2024-08-31 12:36:49 +08:00
printf("User application %d\n",12);
return -1;
}