1 |
|
/* |
2 |
|
* sid.h - 6581 SID emulation |
3 |
|
* |
4 |
< |
* SIDPlayer (C) Copyright 1996-2000 Christian Bauer |
4 |
> |
* SIDPlayer (C) Copyright 1996-2003 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
29 |
|
*/ |
30 |
|
|
31 |
|
// Init SID emulation |
32 |
< |
extern void SIDInit(void); |
32 |
> |
extern void SIDInit(); |
33 |
|
|
34 |
|
// Exit SID emulation |
35 |
< |
extern void SIDExit(void); |
35 |
> |
extern void SIDExit(); |
36 |
|
|
37 |
|
// Reset SID emulation |
38 |
|
extern void SIDReset(cycle_t now); |
40 |
|
// Fill audio buffer with SID sound |
41 |
|
extern void SIDCalcBuffer(uint8 *buf, int count); |
42 |
|
|
43 |
+ |
// Execute 6510 replay routine once |
44 |
+ |
extern void SIDExecute(); |
45 |
+ |
|
46 |
|
// Set replay frequency and speed adjustment |
47 |
|
extern void SIDSetReplayFreq(int freq); |
48 |
|
extern void SIDAdjustSpeed(int percent); |