aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/core/idt.c
diff options
context:
space:
mode:
authorAlex Auvolat <alex.auvolat@ens.fr>2015-02-13 16:16:38 +0100
committerAlex Auvolat <alex.auvolat@ens.fr>2015-02-13 16:16:38 +0100
commitba775049719be84c953bc6dbd097d5d11c30fda7 (patch)
treeafa74f17f3a41752a5e5dfc1e0264d6adcfcdb24 /src/kernel/core/idt.c
parent1df9fff83a0025421e50b2fcecd0f69997178fe0 (diff)
downloadkogata-ba775049719be84c953bc6dbd097d5d11c30fda7.tar.gz
kogata-ba775049719be84c953bc6dbd097d5d11c30fda7.zip
Cleanup output.
Diffstat (limited to 'src/kernel/core/idt.c')
-rw-r--r--src/kernel/core/idt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel/core/idt.c b/src/kernel/core/idt.c
index 2f244e3..cb02bf9 100644
--- a/src/kernel/core/idt.c
+++ b/src/kernel/core/idt.c
@@ -106,7 +106,6 @@ void idt_irqHandler(registers_t *regs) {
}
outb(0x20, 0x20);
- dbg_printf("IRQ %i\n", regs->err_code);
if (irq_handlers[regs->err_code] != 0) {
irq_handlers[regs->err_code](regs);
}
@@ -114,7 +113,7 @@ void idt_irqHandler(registers_t *regs) {
/* Caled in interrupt.s when a syscall is called */
void idt_syscallHandler(registers_t *regs) {
- dbg_printf("Syscall %i\n", regs->int_no);
+ dbg_printf("Syscall %i (not implemented yet)\n", regs->int_no);
// do nothing, yet.
}