Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. boot_log:
  2.          pushad
  3.  
  4.          mov   eax,10*65536
  5.          mov   ax,word [boot_y]
  6.          add   [boot_y],dword 10
  7.          mov   ebx,0x80ffffff   ; ASCIIZ string with white color
  8.          mov   ecx,esi
  9.          mov   edi,1
  10.          call  dtext
  11.  
  12.          mov   [novesachecksum],1000
  13.          call  checkVga_N13
  14.  
  15.          cmp   [preboot_blogesc],byte 1
  16.          je    .bll2
  17.  
  18.          cmp   esi,boot_tasking
  19.          jne   .bll2
  20.          ; begin ealex 04.08.05
  21. ;         in    al,0x61
  22. ;         and   al,01111111b
  23. ;         out   0x61,al
  24.          ; end ealex 04.08.05
  25. .bll1:   in    al,0x60    ; wait for ESC key press
  26.          cmp   al,129
  27.          jne   .bll1
  28.  
  29. .bll2:   popad
  30.  
  31.          ret
  32.