2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
8 #include <aros/kernel.h>
10 #include <kernel_base.h>
11 #include <kernel_debug.h>
13 /*****************************************************************************
16 #include <proto/kernel.h>
18 AROS_LH1(void, KrnPutChar
,
21 AROS_LHA(char, c
, D0
),
24 struct KernelBase
*, KernelBase
, 25, Kernel
)
27 Output a single character to low-level debug output stream
30 c - A character to output
44 During very early system startup this function can be called
45 directly with KernelBase set to NULL. Architecture-specific
46 implementations of this function need to take care of it.
48 ******************************************************************************/
52 krnPutC(c
, KernelBase
);