diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-17 14:16:55 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-17 14:16:55 -0400 |
commit | 7ee9347560768641096df68c545ac085a20233e4 (patch) | |
tree | 5b567f2e98cd9e6aeee33eeecd7fbf6f2fafdeab /arch/x86_64/lgdt.s | |
parent | f466364b8a3858e7b3f19258d142851cb4a7e6d6 (diff) | |
download | jove-kernel-7ee9347560768641096df68c545ac085a20233e4.tar.gz jove-kernel-7ee9347560768641096df68c545ac085a20233e4.tar.bz2 jove-kernel-7ee9347560768641096df68c545ac085a20233e4.zip |
working usermode pager. fix usermode interrupts
Diffstat (limited to 'arch/x86_64/lgdt.s')
-rw-r--r-- | arch/x86_64/lgdt.s | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86_64/lgdt.s b/arch/x86_64/lgdt.s index 7122ef9..55e37b5 100644 --- a/arch/x86_64/lgdt.s +++ b/arch/x86_64/lgdt.s @@ -20,7 +20,6 @@ gdt_load: .global tss_flush .type tss_flush @function tss_flush: - movw %di, %ax - ltr %ax + ltr %di retq .size tss_flush, . - tss_flush |