1 |
|
/* |
2 |
|
* cpu.h - 6510 CPU emulation |
3 |
|
* |
4 |
< |
* SIDPlayer (C) Copyright 1996-2000 Christian Bauer |
4 |
> |
* SIDPlayer (C) Copyright 1996-2004 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 CPU emulation |
32 |
< |
extern void CPUInit(void); |
32 |
> |
extern void CPUInit(); |
33 |
|
|
34 |
|
// Exit CPU emulation |
35 |
< |
extern void CPUExit(void); |
35 |
> |
extern void CPUExit(); |
36 |
|
|
37 |
|
// CPU emulation loop |
38 |
|
extern void CPUExecute(uint16 startadr, uint8 init_ra, uint8 init_rx, uint8 init_ry, cycle_t max_cycles); |