--- Frodo4/Src/C64.h 2003/07/01 17:09:43 1.1 +++ Frodo4/Src/C64.h 2003/07/02 14:46:24 1.3 @@ -1,7 +1,7 @@ /* * C64.h - Put the pieces together * - * Frodo (C) 1994-1997,2002 Christian Bauer + * Frodo (C) 1994-1997,2002-2003 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,6 +37,16 @@ #endif +// Sizes of memory areas +const int C64_RAM_SIZE = 0x10000; +const int COLOR_RAM_SIZE = 0x400; +const int BASIC_ROM_SIZE = 0x2000; +const int KERNAL_ROM_SIZE = 0x2000; +const int CHAR_ROM_SIZE = 0x1000; +const int DRIVE_RAM_SIZE = 0x800; +const int DRIVE_ROM_SIZE = 0x4000; + + // false: Frodo, true: FrodoSC extern bool IsFrodoSC;