Subversion Repositories Kolibri OS

Rev

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

  1. format ELF
  2. include "public_stdcall.inc"
  3. section '.text' executable
  4. public_stdcall _msys_putpixel,12
  5. ;arg1 - x
  6. ;arg2 - y
  7. ;arg3 - color
  8.   push  ebx
  9.   xor   eax,eax
  10.   mov   ebx,[esp+8]
  11.   inc   eax
  12.   mov   ecx,[esp+12]
  13.   mov   edx,[esp+16]
  14.   int   0x40
  15.   pop   ebx
  16.   ret   12
  17.