2 Copyright 1995-2007, The AROS Development Team. All rights reserved.
5 Desc: Emit one character via raw IO
9 /*****i***********************************************************************
12 #include <aros/libcall.h>
13 #include <proto/exec.h>
14 #include <proto/kernel.h>
15 #include "../kernel/hostinterface.h"
17 extern struct HostInterface
*HostIFace
;
19 AROS_LH1(void, RawPutChar
,
22 AROS_LHA(UBYTE
, chr
, D0
),
25 struct ExecBase
*, SysBase
, 86, Exec
)
28 Emits a single character.
31 chr - The character to emit
37 This function is for very low level debugging only.
44 RawIOInit(), RawPutChar(), RawMayGetChar()
50 *****************************************************************************/
54 /* Don't write 0 bytes */
58 HostIFace
->PutChar(chr
);