summaryrefslogtreecommitdiff
path: root/firmware/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/debug.c')
-rw-r--r--firmware/debug.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/debug.c b/firmware/debug.c
index 4031ba432d..ef57053791 100644
--- a/firmware/debug.c
+++ b/firmware/debug.c
@@ -28,8 +28,10 @@
28 28
29#ifdef DEBUG 29#ifdef DEBUG
30static char debugmembuf[200]; 30static char debugmembuf[200];
31#if CONFIG_CPU == SH3704
31static char debugbuf[400]; 32static char debugbuf[400];
32#endif 33#endif
34#endif
33 35
34#ifndef SIMULATOR /* allow non archos platforms to display output */ 36#ifndef SIMULATOR /* allow non archos platforms to display output */
35#include "kernel.h" 37#include "kernel.h"
@@ -222,7 +224,7 @@ static void debug(char *msg)
222 if (f) (*f)(msg); 224 if (f) (*f)(msg);
223} 225}
224 226
225void debug_init() 227void debug_init(void)
226{ 228{
227} 229}
228 230