2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Desc: Low-level debugging support.
8 #include <exec/execbase.h>
9 #include <proto/exec.h>
10 #include <aros/asmcall.h>
13 /* All I need is a global variable SysBase */
14 extern struct ExecBase
*SysBase
;
16 AROS_UFH2 (void, KPutChar
,
17 AROS_UFHA(UBYTE
, chr
, D0
),
18 AROS_UFHA(struct ExecBase
*,SysBase
,A3
)
26 void KPrintF(STRPTR format
, ...) __stackparm
;
28 void KPrintF(STRPTR format
, ...)
30 RawDoFmt(format
,&format
+1,(VOID_FUNC
)KPutChar
,SysBase
);