http://git.dujemihanovic.i2p?p=nameless-os.git;a=blob;f=boot/x86/old/protected.s;h=63d448cac20ce1da988dfd277a0470e2ca8c7acf;hb=c29b9d737fde3b6037aacc95cc6ff4f5fbc63d46
search: re summary | shortlog | log | commit | commitdiff | tree history | raw | HEAD Remove unused protected-mode print routine [nameless-os.git] / boot / x86 / old / 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 ;...