Subversion Repositories Kolibri OS

Rev

Rev 1221 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. use32
  3.  
  4. db 'MENUET01'
  5. dd 1
  6. dd start
  7. dd i_end
  8. dd mem
  9. dd mem
  10. dd 0
  11. dd 0
  12.  
  13. start:
  14.            mov eax, 68
  15.            mov ebx, 21
  16.            mov ecx, sz_kms
  17.            mov edx, sz_mode
  18.            int 0x40
  19.  
  20.            mov eax, -1
  21.            int 0x40
  22.  
  23. sz_kms   db '/rd/1/drivers/atikms.dll',0
  24. sz_mode  db '-m 1024x768  -l/hd0/2/atikms.log',0
  25.  
  26. align 4
  27. i_end:
  28. rb 16
  29. mem:
  30.