Some more of m68k. Added errors where ports should add stuff.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22694 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2007-10-23 23:43:11 +00:00
parent 51238e6bd3
commit ae8bc15af5
2 changed files with 9 additions and 0 deletions

View File

@ -371,6 +371,11 @@ extern void debug_vprintf(const char *format, va_list args);
# define B_MAX_CPU_COUNT 8
#elif __POWERPC__
# define B_MAX_CPU_COUNT 8
#elif __M68K__
# define B_MAX_CPU_COUNT 1
#else
# warning Unknown cpu
# define B_MAX_CPU_COUNT 1
#endif
#define OBOS_CPU_TYPES

View File

@ -15,6 +15,10 @@
#include <arch/x86/arch_debugger.h>
#elif __POWERPC__
#include <arch/ppc/arch_debugger.h>
#elif __M68K__
#include <arch/m68k/arch_debugger.h>
#else
#error you need to write a <arch/<cpu>/arch_debugger.h>
#endif
typedef struct debug_cpu_state debug_cpu_state;