1 |
|
/* |
2 |
|
* basilisk_glue.cpp - Glue UAE CPU to Basilisk II CPU engine interface |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2001 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2002 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 |
105 |
|
|
106 |
|
|
107 |
|
/* |
108 |
+ |
* Initialize memory mapping of frame buffer (called upon video mode change) |
109 |
+ |
*/ |
110 |
+ |
|
111 |
+ |
void InitFrameBufferMapping(void) |
112 |
+ |
{ |
113 |
+ |
#if !REAL_ADDRESSING && !DIRECT_ADDRESSING |
114 |
+ |
memory_init(); |
115 |
+ |
#endif |
116 |
+ |
} |
117 |
+ |
|
118 |
+ |
/* |
119 |
|
* Reset and start 680x0 emulation (doesn't return) |
120 |
|
*/ |
121 |
|
|