--- SIDPlayer/src/sid.h 2001/01/21 18:04:46 1.2 +++ SIDPlayer/src/sid.h 2003/10/21 16:56:19 1.4 @@ -1,7 +1,7 @@ /* * sid.h - 6581 SID emulation * - * SIDPlayer (C) Copyright 1996-2001 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 @@ -29,10 +29,10 @@ */ // Init SID emulation -extern void SIDInit(void); +extern void SIDInit(); // Exit SID emulation -extern void SIDExit(void); +extern void SIDExit(); // Reset SID emulation extern void SIDReset(cycle_t now); @@ -40,6 +40,9 @@ extern void SIDReset(cycle_t now); // Fill audio buffer with SID sound extern void SIDCalcBuffer(uint8 *buf, int count); +// Execute 6510 replay routine once +extern void SIDExecute(); + // Set replay frequency and speed adjustment extern void SIDSetReplayFreq(int freq); extern void SIDAdjustSpeed(int percent);