Files
codezero/include/l4/platform/eb/printascii.h
2009-11-02 21:29:55 +05:30

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__ */