--- SIDPlayer/src/sid.h 2000/07/28 12:42:30 1.1.1.1 +++ SIDPlayer/src/sid.h 2004/01/12 15:15:49 1.5 @@ -1,7 +1,7 @@ /* * sid.h - 6581 SID emulation * - * 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 @@ -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);