e5c041df96
Correction of various mistakes in functions of work with files. For work with files 70 function is used. Functions for work with memory are changed for use of the new manager of memory. git-svn-id: svn://kolibrios.org@610 a494cfbc-eb01-0410-851d-a64ba20cac60
20 lines
230 B
NASM
20 lines
230 B
NASM
format ELF
|
|
|
|
include "proc32.inc"
|
|
|
|
section '.text' executable
|
|
|
|
public _msys_debug_out
|
|
|
|
align 4
|
|
proc _msys_debug_out stdcall, c:byte
|
|
|
|
xor ecx,ecx
|
|
mov cl,byte[c]
|
|
mov ebx,1
|
|
mov eax,63
|
|
int 0x40
|
|
ret
|
|
|
|
endp
|