diff options
author | Marvin Borner | 2020-08-05 18:28:26 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-05 18:28:26 +0200 |
commit | 4af62bb53676b7f721b46cabee78cac3a557e924 (patch) | |
tree | b9c7e615c3226d9822c22cdb6cdb326f379db73f /src/features/syscall.c | |
parent | b7f59b28b380d55f9e7abd8e450f1f9c7f050221 (diff) |
Some proc things
Diffstat (limited to 'src/features/syscall.c')
-rw-r--r-- | src/features/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/syscall.c b/src/features/syscall.c index ab1849c..c3a758a 100644 --- a/src/features/syscall.c +++ b/src/features/syscall.c @@ -13,7 +13,7 @@ void syscall_handler(struct regs *r) bin_load("/a", a); } -void syscall_install() +void syscall_init() { isr_install_handler(0x80, syscall_handler); } |