--- SIDPlayer/src/cpu.cpp 2003/04/11 20:23:02 1.3 +++ SIDPlayer/src/cpu.cpp 2004/01/12 15:15:49 1.5 @@ -1,7 +1,7 @@ /* * cpu.cpp - 6510 CPU emulation * - * SIDPlayer (C) Copyright 1996-2003 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 @@ -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() { }