Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
35558856164fb845a2329bc5e8a46cd616bdc5a3
/
.
/
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
();