1 |
|
/* |
2 |
|
* basilisk_glue.cpp - Glue UAE CPU to Basilisk II CPU engine interface |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2000 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2001 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 |
28 |
|
#include "memory.h" |
29 |
|
#include "readcpu.h" |
30 |
|
#include "newcpu.h" |
31 |
– |
#include "compiler.h" |
31 |
|
|
32 |
|
|
33 |
|
// RAM and ROM pointers |
87 |
|
#endif |
88 |
|
|
89 |
|
init_m68k(); |
91 |
– |
#ifdef USE_COMPILER |
92 |
– |
compiler_init(); |
93 |
– |
#endif |
90 |
|
return true; |
91 |
|
} |
92 |
|
|