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

void test(u8 *data)
{
	printf(".");
}

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

	/* while (1) { */
	/* 	putch(getch()); */
	/* } */
	//syscall_map(MAP_KEYBOARD, (u32)&test);

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