diff options
author | Simponic <loganthebean222@gmail.com> | 2021-03-08 23:28:16 -0700 |
---|---|---|
committer | Simponic <loganthebean222@gmail.com> | 2021-03-08 23:28:16 -0700 |
commit | dede7fa93eb4d19c6290355af0c5cb342e47e2f6 (patch) | |
tree | bb2b1333d03a135d8998ab834546782fcdd3c680 /src/kernel.c | |
parent | f42700b6c6329be0813b523bcde6bcf1ee13678a (diff) | |
download | simponicOS-dede7fa93eb4d19c6290355af0c5cb342e47e2f6.tar.gz simponicOS-dede7fa93eb4d19c6290355af0c5cb342e47e2f6.zip |
No progress on interrupts :(
Diffstat (limited to 'src/kernel.c')
-rw-r--r-- | src/kernel.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel.c b/src/kernel.c index 653cd4e..b26634c 100644 --- a/src/kernel.c +++ b/src/kernel.c @@ -15,7 +15,6 @@ void kernel_main(void) { initializeIDT(); printToMonitor("Hello\n"); printIntToMonitor(10, 10); - asm ("int $0x3"); - asm ("int $0x4"); + asm("int $0x01"); } |