aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.h
blob: 5c21d58960b7bdbcc738e6038a4a3ded7285eda9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MELVIX_SYSCALL_H
#define MELVIX_SYSCALL_H

#include <stdint.h>

extern void idt_syscall();

void syscalls_install();

uint32_t sys_exec(char *path);

uint32_t sys_putch(char ch);

uint32_t sys_getch();

uint32_t sys_malloc(uint32_t count);

uint32_t sys_free(uint32_t ptr);

#endif