Files
codezero/include/l4/platform/pb926/printascii.h
Bahadir Balban e2b791a3d8 Initial commit
2008-01-13 13:53:52 +00:00

14 lines
308 B
C

#ifndef __PLATFORM__PB926__PRINTASCII__H__
#define __PLATFORM__PB926__PRINTASCII__H__
#define dprintk(str, val) \
printascii(str); \
printascii("0x"); \
printhex8((val)); \
printascii("\n");
void printascii(char *str);
void printhex8(unsigned int);
#endif /* __PLATFORM__PB926__PRINTASCII__H__ */