aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/interrupts.asm
diff options
context:
space:
mode:
authorMarvin Borner2020-08-05 18:28:26 +0200
committerMarvin Borner2020-08-05 18:28:26 +0200
commit4af62bb53676b7f721b46cabee78cac3a557e924 (patch)
treeb9c7e615c3226d9822c22cdb6cdb326f379db73f /src/drivers/interrupts.asm
parentb7f59b28b380d55f9e7abd8e450f1f9c7f050221 (diff)
Some proc things
Diffstat (limited to 'src/drivers/interrupts.asm')
-rw-r--r--src/drivers/interrupts.asm14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/drivers/interrupts.asm b/src/drivers/interrupts.asm
index 59c323c..8f8afbb 100644
--- a/src/drivers/interrupts.asm
+++ b/src/drivers/interrupts.asm
@@ -37,13 +37,6 @@ irq_common_stub:
push fs
push gs
- mov ax, 0x10
- mov ds, ax
- mov es, ax
- mov fs, ax
- mov gs, ax
- cld
-
push esp
call irq_handler
add esp, 4
@@ -120,13 +113,6 @@ isr_common_stub:
push fs
push gs
- mov ax, 0x10
- mov ds, ax
- mov es, ax
- mov fs, ax
- mov gs, ax
- cld
-
push esp
call isr_handler
add esp, 4