aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/programs/sh.c
blob: 12f8b2ce34022fb2e17dc185a22f057090cbcb9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdint.h>
#include <stdio.h>
#include <stddef.h>
#include <common.h>
#include <unistd.h>
#include <syscall.h>
#include <gui.h>

void main()
{
	printf("[~] ");

	/* while (1) { */
	/* 	putch(getch()); */
	/* } */

	/* syscall_halt(); */
	while (1) {
		//printf("A");
	};
}