From 68083f29a3caa5338198d4417004cf438998b42a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 9 Oct 2008 09:48:08 +0000 Subject: [PATCH] The last 16MB (physical) on Atari is used for IO, and we currently map it through transparent translation register. Move commpage out of the way. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27936 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/system/arch/m68k/arch_commpage_defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/private/system/arch/m68k/arch_commpage_defs.h b/headers/private/system/arch/m68k/arch_commpage_defs.h index 47aa7322f1..0b6d6e354d 100644 --- a/headers/private/system/arch/m68k/arch_commpage_defs.h +++ b/headers/private/system/arch/m68k/arch_commpage_defs.h @@ -12,7 +12,7 @@ #define COMMPAGE_ENTRY_M68K_SYSCALL (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 0) #define COMMPAGE_ENTRY_M68K_MEMCPY (COMMPAGE_ENTRY_FIRST_ARCH_SPECIFIC + 1) -#warning M68K: FIXME: colides with IO space mapped with TT1! -#define ARCH_USER_COMMPAGE_ADDR (0xffff0000) +/* 0xffff0000 colides with IO space mapped with TT1 on Atari */ +#define ARCH_USER_COMMPAGE_ADDR (0xfeff0000) #endif /* _SYSTEM_ARCH_M68K_COMMPAGE_DEFS_H */