aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/programs/sh.c
blob: 6dcb2064a655281893595acf2994f0d88e6d20d4 (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();
}