mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 19:33:15 +01:00
New files are an exact copy of pb926 files, but will help in testing different configurations and compilations.
16 lines
321 B
C
16 lines
321 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__ */
|