--- SIDPlayer/src/mem.cpp 2000/07/28 12:42:30 1.1.1.1 +++ SIDPlayer/src/mem.cpp 2004/01/12 15:15:49 1.5 @@ -1,7 +1,7 @@ /* * mem.cpp - Emulator memory management * - * SIDPlayer (C) Copyright 1996-2000 Christian Bauer + * SIDPlayer (C) Copyright 1996-2004 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,7 +37,7 @@ uint8 ram[RAM_SIZE]; * Init memory management */ -void MemoryInit(void) +void MemoryInit() { // Clear memory contents MemoryClear(); @@ -48,7 +48,7 @@ void MemoryInit(void) * Exit memory management */ -void MemoryExit(void) +void MemoryExit() { } @@ -57,7 +57,7 @@ void MemoryExit(void) * Clear memory contents */ -void MemoryClear(void) +void MemoryClear() { memset(ram, 0, RAM_SIZE - 0x2000); memset(ram + 0xe000, 0x40, 0x2000); // Fill kernal ROM area with RTI