Fix ROM base. On Amiga the first page is a bit special but it should still be mapped at boot time. Will need more checks.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38917 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -7,17 +7,18 @@
|
||||
|
||||
|
||||
/* the DMA-accessible RAM */
|
||||
/*#define AMIGA_CHIPRAM_BASE 0x00000000*/
|
||||
#define AMIGA_CHIPRAM_BASE 0x00000000
|
||||
//XXX:
|
||||
/* actually, the first 2kB aren't usable */
|
||||
#define AMIGA_CHIPRAM_BASE 0x00001000
|
||||
//#define AMIGA_CHIPRAM_BASE 0x00001000
|
||||
#define AMIGA_CHIPRAM_MAX 0x00e00000
|
||||
#define AMIGA_CHIPRAM_LAST \
|
||||
(AMIGA_CHIPRAM_BASE + (AMIGA_CHIPRAM_MAX - 1))
|
||||
|
||||
#define AMIGA_TOSROM_BASE 0x00e00000
|
||||
#define AMIGA_TOSROM_MAX 0x00100000
|
||||
#define AMIGA_TOSROM_LAST \
|
||||
(AMIGA_TOSROM_BASE + (AMIGA_TOSROM_MAX - 1))
|
||||
#define AMIGA_ROM_BASE 0x00f80000
|
||||
#define AMIGA_ROM_MAX 0x00080000
|
||||
#define AMIGA_ROM_LAST \
|
||||
(AMIGA_ROM_BASE + (AMIGA_ROM_MAX - 1))
|
||||
|
||||
/* some reserved ST I/O there... */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user