aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/boot
diff options
context:
space:
mode:
authorFabian Imhof <fabian.imhof@ost.ch>2025-03-13 14:05:45 +0000
committerFabian Imhof <fabian.imhof@ost.ch>2025-03-13 14:05:45 +0000
commit2e4cbd473ff3bb7ac7371af39becf830b4fb753b (patch)
tree3eb8cc5fcf255db3c308930b800c9dd32c6b295b /arch/x86_64/src/boot
parentb8a0024ee71a64ec0e87a1e2d0c0c7280dc954e6 (diff)
downloadteachos-2e4cbd473ff3bb7ac7371af39becf830b4fb753b.tar.xz
teachos-2e4cbd473ff3bb7ac7371af39becf830b4fb753b.zip
IN_PROGRESS implement gdt initialization
Diffstat (limited to 'arch/x86_64/src/boot')
-rw-r--r--arch/x86_64/src/boot/boot.s2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/src/boot/boot.s b/arch/x86_64/src/boot/boot.s
index dbea42a..39bfe33 100644
--- a/arch/x86_64/src/boot/boot.s
+++ b/arch/x86_64/src/boot/boot.s
@@ -199,7 +199,7 @@ _start:
cli /* Clears the interrupt flag during the GDT setup */
lgdt (global_descriptor_table_pointer)
- jmp $global_descriptor_table_code,$_transition_to_long_mode
+ jmp $global_descriptor_table_code, $_transition_to_long_mode
/* The interrupt flag is set in cpp after setting up the GDT */
call halt