aboutsummaryrefslogtreecommitdiff
path: root/src/features
diff options
context:
space:
mode:
authorMarvin Borner2020-08-05 21:33:48 +0200
committerMarvin Borner2020-08-05 21:33:48 +0200
commit835960fd85989ee961b5a932f467e6e4f545d201 (patch)
treed93c67e51189eec12fb43ef860deba92e9017329 /src/features
parent4af62bb53676b7f721b46cabee78cac3a557e924 (diff)
Added some cpu function wrappers
Diffstat (limited to 'src/features')
-rw-r--r--src/features/proc.c5
-rw-r--r--src/features/syscall.c1
2 files changed, 4 insertions, 2 deletions
diff --git a/src/features/proc.c b/src/features/proc.c
index 7acbf03..d0fd66c 100644
--- a/src/features/proc.c
+++ b/src/features/proc.c
@@ -1,5 +1,6 @@
// MIT License, Copyright (c) 2020 Marvin Borner
+#include <cpu.h>
#include <interrupts.h>
#include <load.h>
#include <mem.h>
@@ -70,7 +71,7 @@ struct proc *proc_make()
void proc_init()
{
- __asm__ volatile("cli");
+ cli();
current = root = proc_make();
bin_load("/init", root);
irq_install_handler(0, scheduler);
@@ -81,6 +82,6 @@ void proc_init()
*(void **)(&entry) = (u32 *)root->regs.eip;
__asm__ volatile("movl %%eax, %%ebp" ::"a"(root->regs.ebp));
__asm__ volatile("movl %%eax, %%esp" ::"a"(root->regs.esp));
- __asm__ volatile("sti");
+ sti();
entry();
}
diff --git a/src/features/syscall.c b/src/features/syscall.c
index c3a758a..50963b7 100644
--- a/src/features/syscall.c
+++ b/src/features/syscall.c
@@ -15,5 +15,6 @@ void syscall_handler(struct regs *r)
void syscall_init()
{
+ idt_set_gate(0x80, (u32)isr128, 0x08, 0x8E);
isr_install_handler(0x80, syscall_handler);
}