blob: fd27ef5546f8ea96e220ec894cf0e731fb399580 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <syscall.h>
/**
* DEFINITIONS
*/
DEFN_SYSCALL0(halt, 0);
DEFN_SYSCALL1(putch, 1, const char *);
DEFN_SYSCALL0(getch, 2);
DEFN_SYSCALL1(malloc, 3, uint32_t);
DEFN_SYSCALL1(free, 4, uint32_t);
|