diff options
author | Marvin Borner | 2021-07-10 18:36:50 +0200 |
---|---|---|
committer | Marvin Borner | 2021-07-10 18:36:50 +0200 |
commit | 4f1ae4fa4250369919a975f5568425f6791b2489 (patch) | |
tree | aec903e642561edbf6a6cccf513abccff882426f /src/loader/int.asm | |
parent | ad56eb28f0614db4b7656ade390f1c79b446cbc9 (diff) |
Fixed interrupts and added keyboard handler
Diffstat (limited to 'src/loader/int.asm')
-rw-r--r-- | src/loader/int.asm | 4 |
1 files changed, 1 insertions, 3 deletions
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 |