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

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

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

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