1
0
Fork 0
forked from len0rd/rockbox

Made almost the entire file dependent on SH7034. This probably needs attention.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5681 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-01-27 19:17:08 +00:00
parent 557fc20f3a
commit e0d906d250

View file

@ -16,11 +16,12 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include "sh7034.h"
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
#include "config.h" #include "config.h"
#include "cpu.h"
#ifdef DEBUG #ifdef DEBUG
static char debugmembuf[100]; static char debugmembuf[100];
@ -46,6 +47,7 @@ void debug_init(void)
} }
#ifdef DEBUG #ifdef DEBUG
#if CONFIG_CPU == SH7034 /* these are still very SH-oriented */
static int debug_tx_ready(void) static int debug_tx_ready(void)
{ {
return (SSR1 & SCI_TDRE); return (SSR1 & SCI_TDRE);
@ -195,6 +197,7 @@ static void debug(const char *msg)
mem2hex(msg, &debugbuf[1], strlen(msg)); mem2hex(msg, &debugbuf[1], strlen(msg));
putpacket(debugbuf); putpacket(debugbuf);
} }
#endif /* SH7034 */
#endif /* end of DEBUG section */ #endif /* end of DEBUG section */
#ifdef __GNUC__ #ifdef __GNUC__