2024-08-30 16:12:44 +08:00
|
|
|
#include "../include/syscall.h"
|
2024-07-14 00:54:27 +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-30 16:12:44 +08:00
|
|
|
syscall_print("Hello! User Application!\n");
|
|
|
|
//put_char('A');
|
2024-08-14 21:58:29 +08:00
|
|
|
hlt();
|
2024-07-14 00:54:27 +08:00
|
|
|
return 0;
|
|
|
|
}
|