Subversion Repositories Kolibri OS

Rev

Rev 981 | 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, 16
  16.            mov ecx, sz_sound
  17.        int 0x40
  18.        test eax, eax
  19.        jnz .exit
  20.  
  21.            mov eax, 68
  22.            mov ebx, 21
  23.        mov ecx, sz_path
  24.            int 0x40
  25.  
  26. .exit:
  27.            mov eax, -1
  28.            int 0x40
  29.  
  30.  
  31. sz_sound  db 'SOUND',0
  32. sz_path   db '/rd/1/drivers/geode.drv',0
  33.  
  34. align 4
  35. i_end:
  36. rb 128
  37. mem:
  38.