2 Copyright © 1995-2017, The AROS Development Team. All rights reserved.
5 Desc: Emit one character via raw IO
9 #include "exec_intern.h"
11 /*****i***********************************************************************
14 #include <proto/exec.h>
16 AROS_LH1(void, RawPutChar
,
19 AROS_LHA(UBYTE
, chr
, D0
),
22 struct ExecBase
*, SysBase
, 86, Exec
)
25 Emits a single character into low-level debug output stream
28 chr - The character to emit
34 This function is for very low level debugging only.
36 Zero bytes are ignored by this function.
43 RawIOInit(), RawPutChar(), RawMayGetChar()
47 *****************************************************************************/
51 /* Don't write 0 bytes */
52 if (KernelBase
&& chr
)