Subversion Repositories Kolibri OS

Rev

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

  1. format ELF
  2. section '.text' executable
  3. public _msys_midi_reset
  4. _msys_midi_reset:
  5.   mov  edx,ebx
  6.   mov  eax,20
  7.   xor  ebx,ebx
  8.   inc  ebx
  9.   int  0x40
  10.   mov  ebx,edx
  11.   ret
  12.  
  13. public _msys_midi_send
  14. _msys_midi_send:
  15. ;arg1 - data
  16.   mov  edx,ebx
  17.   mov  eax,20
  18.   mov  ebx,2
  19.   xor  ecx,ecx
  20.   mov  cl,[esp+4]
  21.   mov  ebx,edx
  22.   ret  4