2006-09-07 16:14:53 +02:00
|
|
|
format ELF
|
2006-09-23 16:00:36 +02:00
|
|
|
include "public_stdcall.inc"
|
2006-09-07 16:14:53 +02:00
|
|
|
section '.text' executable
|
2006-09-23 16:00:36 +02:00
|
|
|
public_stdcall _msys_debug_out,4
|
2006-09-07 16:14:53 +02:00
|
|
|
;arg1 - char to out
|
|
|
|
push ebx
|
|
|
|
mov ecx,[esp+8]
|
|
|
|
mov ebx,1
|
|
|
|
mov eax,63
|
|
|
|
int 0x40
|
|
|
|
pop ebx
|
|
|
|
ret 4
|