summaryrefslogtreecommitdiff
path: root/asm
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-02 01:44:40 +0200
committerMiguel <m.i@gmx.at>2018-09-02 01:44:40 +0200
commitc459fab7662eaf45df9994c828065b9fc8d4a8ac (patch)
treedf1504de1c254a18b44bad24d530531790ad8aef /asm
parent8e3411139b27a3421e9ac75c13f14f99f6dd3137 (diff)
syscalls fine
Diffstat (limited to 'asm')
-rw-r--r--asm/int.h3
-rw-r--r--asm/int.s20
2 files changed, 0 insertions, 23 deletions
diff --git a/asm/int.h b/asm/int.h
index 33dd16e..4133fbf 100644
--- a/asm/int.h
+++ b/asm/int.h
@@ -38,6 +38,3 @@ void exc15();
void exc16();
void exc17();
void exc18();
-
-void asm_mouse_handler();
-void asm_kb_handler();
diff --git a/asm/int.s b/asm/int.s
index 156c266..3049a52 100644
--- a/asm/int.s
+++ b/asm/int.s
@@ -40,26 +40,6 @@
.global exc17
.global exc18
-//temporary
-.global asm_mouse_handler
-.global asm_kb_handler
-
-asm_kb_handler:
- push %eax
- mov $0x0,%eax
- in $0x60,%al
- pop %eax
- ret
-
-asm_mouse_handler:
- push %eax
- mov $0x0,%eax
- in $0x60,%al
- pop %eax
- ret
-
-///////////////
-
// nothing to ack
.macro ack0
.endm