14 lines
264 B
C
14 lines
264 B
C
#pragma once
|
|
#ifdef __KERNEL__
|
|
#include "cpu_context.h"
|
|
#endif
|
|
|
|
#define SYSCALL_ID_EXIT 1
|
|
#define SYSCALL_ID_YOLO 2
|
|
#define SYSCALL_ID_PUTC 3
|
|
#define SYSCALL_ID_READ 4
|
|
|
|
#ifdef __KERNEL__
|
|
int syscallExecute(int syscallId, const struct cpu_state *user_ctx);
|
|
#endif
|