From d06c88d37dd9281fc55eab6b5653c5a26bcae456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sun, 3 Aug 2008 19:18:56 +0000 Subject: [PATCH] Just go for 256MB for transparent translation at boot, 32MB is not enough anyway yet, the kernel wants 16MB just for the heap. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26768 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/atari_m68k/mmu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/boot/platform/atari_m68k/mmu.cpp b/src/system/boot/platform/atari_m68k/mmu.cpp index d046241c12..6ed808259c 100644 --- a/src/system/boot/platform/atari_m68k/mmu.cpp +++ b/src/system/boot/platform/atari_m68k/mmu.cpp @@ -591,8 +591,8 @@ mmu_init(void) gKernelArgs.num_physical_allocated_ranges = 1; // remember the start of the allocated physical pages - // enable transparent translation of the first 32 MB - gMMUOps->set_tt(0, ATARI_CHIPRAM_BASE, 0x02000000, 0); + // enable transparent translation of the first 256 MB + gMMUOps->set_tt(0, ATARI_CHIPRAM_BASE, 0x10000000, 0); // enable transparent translation of the 16MB ST shadow range for I/O gMMUOps->set_tt(1, ATARI_SHADOW_BASE, 0x01000000, 0);