CoolPotOS/apps/init/init.c

11 lines
120 B
C
Raw Normal View History

2024-07-14 00:54:27 +08:00
#include "../include/stdio.h"
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-14 21:58:29 +08:00
hlt();
//put_char('A');
2024-07-14 00:54:27 +08:00
return 0;
}