forked from KolibriOS/kolibrios
51d395d0cc
git-svn-id: svn://kolibrios.org@145 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
197 B
NASM
14 lines
197 B
NASM
format ELF
|
|
section '.text' executable
|
|
|
|
public _msys_debug_out
|
|
_msys_debug_out:
|
|
;arg1 - char to out
|
|
push ebx
|
|
mov ecx,[esp+8]
|
|
mov ebx,1
|
|
mov eax,63
|
|
int 0x40
|
|
pop ebx
|
|
ret 4
|