2 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
5 Desc: Emit one character via raw IO
9 #include <proto/kernel.h>
11 #include "exec_intern.h"
13 /*****i***********************************************************************
16 #include <proto/exec.h>
18 AROS_LH1(void, RawPutChar
,
21 AROS_LHA(UBYTE
, chr
, D0
),
24 struct ExecBase
*, SysBase
, 86, Exec
)
27 Emits a single character into low-level debug output stream
30 chr - The character to emit
36 This function is for very low level debugging only.
38 Zero bytes are ignored by this function.
45 RawIOInit(), RawPutChar(), RawMayGetChar()
49 *****************************************************************************/
53 /* Don't write 0 bytes */
54 if (KernelBase
&& chr
)