--- SIDPlayer/src/cpu.cpp 2000/07/28 12:42:30 1.1.1.1 +++ SIDPlayer/src/cpu.cpp 2003/10/21 16:56:19 1.4 @@ -1,7 +1,7 @@ /* * cpu.cpp - 6510 CPU emulation * - * SIDPlayer (C) Copyright 1996-2000 Christian Bauer + * SIDPlayer (C) Copyright 1996-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 @@ -53,7 +53,7 @@ static void set_memory_funcs(uint16 from } } -void CPUInit(void) +void CPUInit() { // Set up memory access tables set_memory_funcs(0x0000, 0xffff, ram_read, ram_write); @@ -66,7 +66,7 @@ void CPUInit(void) * Exit CPU emulation */ -void CPUExit(void) +void CPUExit() { }