Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
fbf525fff41a12ec27a89a12e228a81fb4cfe9c0
/
.
/
src
/
kernel
/
syscall.h
blob: c926ff18c68abdf9cfb779e2ec23377b14d820b1 [
file
] [
log
] [
blame
]
swissChili
6422869
2021-03-16 08:19:23 -0700
[
diff
] [
blame
]
1
#pragma
once
2
3
#include
"registers.h"
4
5
#define
SYSCALL_INT
0x80
// copy linux :)
6
7
void
do_syscall
(
struct
registers
*
regs
);
8
void
init_syscall
();