http://git.dujemihanovic.i2p?p=nameless-os.git;a=blob;f=boot/x86/protected.s;h=966390af1a8dad8101595cfa6ed045159dc82636;hb=9fc180435dd7b476130851c48e1ac28009daa864
search: re summary | shortlog | log | commit | commitdiff | tree history | raw | HEAD Handle interrupts [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...