kolibrios/programs/develop/metcc/trunk/libc/mesys/debug_board.asm
andrew_programmer e5c041df96 Update Kolibri version of libC library(for usage in TinyC).
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
2007-08-24 19:49:07 +00:00

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