From 4f1ae4fa4250369919a975f5568425f6791b2489 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 10 Jul 2021 18:36:50 +0200 Subject: Fixed interrupts and added keyboard handler --- src/loader/int.asm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/loader/int.asm') diff --git a/src/loader/int.asm b/src/loader/int.asm index f6e66ae..4805448 100644 --- a/src/loader/int.asm +++ b/src/loader/int.asm @@ -1,7 +1,5 @@ ; MIT License, Copyright (c) 2021 Marvin Borner -bits 32 - %macro INT_REGISTER 1 dd int%1 %endmacro @@ -29,7 +27,7 @@ int_common: push fs push gs - mov ax, 0x10 + mov ax, 0x20 mov ds, ax mov es, ax mov fs, ax -- cgit v1.2.3