http://git.dujemihanovic.i2p?p=nameless-os.git;a=blob;f=boot/x86/protected.s;h=63d448cac20ce1da988dfd277a0470e2ca8c7acf
search: re 63d448cac20ce1da988dfd277a0470e2ca8c7acf [nameless-os.git] / boot / x86 / protected.s 1 ; Everything between real mode and the C kernel 2 3 bits 16 4 5 switch_to_pm 6 mov bx, 0B800h 7 mov es, bx ; set extra segment to starting address of video RAM 8 mov byte [es:0], 'L' ; print an L to screen, to let us know that we actually got here 9 10 cli ; disable interrupts 11 xor ax, ax ; clear accumulator 12 mov ds, ax ; clear data segment, this makes sure the next...