URL
https://opencores.org/ocsvn/c0or1k/c0or1k/trunk
Subversion Repositories c0or1k
[/] [c0or1k/] [trunk/] [include/] [l4/] [platform/] [eb/] [printascii.h] - Rev 2
Compare with Previous | Blame | View Log
#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__ */