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

void main()
{
	write("/dev/fb", 0, 5, "hallo");
	printf("[~] ");

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

	syscall_halt();
}