diff options
author | Simponic <loganthebean222@gmail.com> | 2021-03-08 23:31:08 -0700 |
---|---|---|
committer | Simponic <loganthebean222@gmail.com> | 2021-03-08 23:31:08 -0700 |
commit | fe3d7ad8322df67abd4255b9d377d8bab0007c04 (patch) | |
tree | 01f5b3eb9c6512d5fa88d0a739627ef9810f677a /src/kernel.c | |
parent | c1beac8b2174e0bdc333b69deb92bce5a2c33fd9 (diff) | |
parent | dede7fa93eb4d19c6290355af0c5cb342e47e2f6 (diff) | |
download | simponicos-fe3d7ad8322df67abd4255b9d377d8bab0007c04.tar.gz simponicos-fe3d7ad8322df67abd4255b9d377d8bab0007c04.zip |
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"); } |