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

void main()
{
	syscall_putch('\n');
	syscall_putch('>');
	syscall_putch(' ');

	while (1) {
		syscall_putch(syscall_getch());
	}

	syscall_halt();
}