diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-29 08:51:32 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-29 08:51:32 -0400 |
commit | abfdd6eb3ed61d13a47735812eca0028caf6b6da (patch) | |
tree | 79c744895401a7779e80289c927fcbba72e8f91b /idt.cpp | |
parent | 2d0245a85deb62cbed66c053f80f339e0d97ed70 (diff) |
some fixes
Diffstat (limited to 'idt.cpp')
-rw-r--r-- | idt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -62,8 +62,8 @@ struct StubEntry asm volatile(R"( pusha - mov %%ds, %%ax - push %%ax + mov %%ds, %%eax + push %%eax mov $0x10, %%ax mov %%ax, %%ds mov %%ax, %%es @@ -73,7 +73,7 @@ struct StubEntry cld call interruptGeneralHandler pop %%eax - pop %%ax + pop %%eax mov %%ax, %%ds mov %%ax, %%es mov %%ax, %%fs |