From 4af62bb53676b7f721b46cabee78cac3a557e924 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 5 Aug 2020 18:28:26 +0200 Subject: Some proc things --- src/drivers/interrupts.asm | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/drivers/interrupts.asm') 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 -- cgit v1.2.3