This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bits 16 | |
org 0x7c00 | |
boot: | |
mov ax, 0x2401 | |
int 0x15 ; A20 bitini aktive et | |
mov ax, 0x3 | |
int 0x10 ; vga yazı modunu 3 yap | |
lgdt [gdt_pointer] ; global tanımlayıcı tablosunu yükle | |
mov eax, cr0 |