2 * Copyright (C) 2011, The AROS Development Team. All rights reserved.
3 * Author: Jason S. McMullan <jason.mcmullan@gmail.com>
5 * Licensed under the AROS PUBLIC LICENSE (APL) Version 1.1
15 #include <aros/config.h>
18 int DebugPutChar(register int chr
);
19 int DebugMayGetChar(void);
22 void DebugPutStr(register const char *buff
);
23 void DebugPutHex(const char *what
, ULONG val
);
24 void DebugPutDec(const char *what
, ULONG val
);
25 void DebugPutHexVal(ULONG val
);
27 #define DEBUGPUTS(x) do { DebugPutStr x; } while(0)
28 #define DEBUGPUTD(x) do { DebugPutDec x; } while(0)
29 #define DEBUGPUTHEX(x) do { DebugPutHex x; } while(0)
31 #endif /* !AROS_SERIAL_DEBUG */
34 #define DEBUGPUTS(x) do { } while (0)
35 #define DEBUGPUTD(x) do { } while (0)
36 #define DEBUGPUTHEX(x) do { } while (0)