1 |
|
/* |
2 |
|
* mem.h - Emulator memory management |
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 |
40 |
|
*/ |
41 |
|
|
42 |
|
// Init memory management |
43 |
< |
extern void MemoryInit(void); |
43 |
> |
extern void MemoryInit(); |
44 |
|
|
45 |
|
// Exit memory management |
46 |
< |
extern void MemoryExit(void); |
46 |
> |
extern void MemoryExit(); |
47 |
|
|
48 |
|
// Clear memory contents |
49 |
< |
extern void MemoryClear(void); |
49 |
> |
extern void MemoryClear(); |
50 |
|
|
51 |
|
#endif |