00001 #ifndef DEBUG_PRINT_H 00002 #define DEBUG_PRINT_H 00003 00004 /* 00005 デバッグ表示 00006 Satofumi KAMIMURA 00007 $Id$ 00008 */ 00009 00010 #include "sh7045lib.h" 00011 00012 #define DEBUG_PORT SCI_1 00013 00014 #ifdef DEBUG 00015 #define DEBUG_PUTSTR(X) putstr(DEBUG_PORT, X) 00016 #define DEBUG_PUTHEX(X, Y) puthex(DEBUG_PORT, X, Y) 00017 #else 00018 #define DEBUG_PUTSTR(X) 00019 #define DEBUG_PUTHEX(X, Y) 00020 #endif 00021 00022 #endif /* !DEBUG_PRINT_H */ 00023