; pointer to GDT ;\r
;-------------------;\r
gdtr:\r
- .size dw gdt_end - gdt - 1\r
- .address dd 0x7400 ; this is where we move\r
- ; the gdt\r
+ .size dw gdt_end - gdt - 1\r
+ .address dd 0x7400 ; here we move the gdt\r
+\r
;-----------------------------------;\r
; Global Descriptor Table (GDT). ;\r
;-----------------------------------;\r
gdt:\r
- .null dw 0x0000,0x0000,0x0000,0x0000 ; null desc.\r
- .BOS_code: dw 0xFFFF,0x0000,0x9A00,0x00CF ; 0x08 , was 9800 before.\r
- .BOS_data: dw 0xFFFF,0x0000,0x9200,0x00CF ; 0x10\r
- .BOS_16code: dw 0xFFFF,0x0000,0x9A00,0x0000 ; 0x18\r
- .BOS_16data: dw 0xFFFF,0x0000,0x9200,0x0000 ; 0x20\r
-\r
+ .null dw 0x0000, 0x0000, 0x0000, 0x0000 ; null desc.\r
+ .BOS_code: dw 0xFFFF, 0x0000, 0x9A00, 0x00CF ; 0x08 , was 9800 before.\r
+ .BOS_data: dw 0xFFFF, 0x0000, 0x9200, 0x00CF ; 0x10\r
+ .BOS_16code: dw 0xFFFF, 0x0000, 0x9A00, 0x0000 ; 0x18\r
+ .BOS_16data: dw 0xFFFF, 0x0000, 0x9200, 0x0000 ; 0x20\r
gdt_end:
\ No newline at end of file