--- SIDPlayer/src/mem.cpp 2003/04/11 20:23:02 1.3 +++ SIDPlayer/src/mem.cpp 2003/10/21 16:56:19 1.4 @@ -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