Subversion Repositories Kolibri OS

Rev

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

  1. format ELF
  2.  
  3. include "proc32.inc"
  4.  
  5. section '.text' executable
  6.  
  7. public _msys_debug_out
  8.  
  9. align 4
  10. proc _msys_debug_out stdcall, c:byte
  11.  
  12.   xor ecx,ecx
  13.   mov   cl,byte[c]
  14.   mov   ebx,1
  15.   mov   eax,63
  16.   int   0x40
  17.   ret
  18.  
  19. endp
  20.