mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 03:13:15 +01:00
16 lines
312 B
C
16 lines
312 B
C
#ifndef __PLATFORM__EB__PRINTASCII__H__
|
|
#define __PLATFORM__EB__PRINTASCII__H__
|
|
|
|
#define dprintk(str, val) \
|
|
{ \
|
|
printascii(str); \
|
|
printascii("0x"); \
|
|
printhex8((val)); \
|
|
printascii("\n"); \
|
|
}
|
|
|
|
void printascii(char *str);
|
|
void printhex8(unsigned int);
|
|
|
|
#endif /* __PLATFORM__EB__PRINTASCII__H__ */
|