comparison blastem.c @ 569:9b7fcf748be0

Rename x86_68k_options and m68k_to_x86.h to m68k_options and m68k_core.h respectively
author Michael Pavone <pavone@retrodev.com>
date Sun, 02 Mar 2014 15:25:52 -0800
parents 9324f721efa6
children 76bba9ffe351
comparison
equal deleted inserted replaced
568:19e517735215 569:9b7fcf748be0
2 Copyright 2013 Michael Pavone 2 Copyright 2013 Michael Pavone
3 This file is part of BlastEm. 3 This file is part of BlastEm.
4 BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text. 4 BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text.
5 */ 5 */
6 #include "68kinst.h" 6 #include "68kinst.h"
7 #include "m68k_to_x86.h" 7 #include "m68k_core.h"
8 #include "z80_to_x86.h" 8 #include "z80_to_x86.h"
9 #include "mem.h" 9 #include "mem.h"
10 #include "vdp.h" 10 #include "vdp.h"
11 #include "render.h" 11 #include "render.h"
12 #include "blastem.h" 12 #include "blastem.h"
867 } 867 }
868 868
869 void init_run_cpu(genesis_context * gen, FILE * address_log, char * statefile, uint8_t * debugger) 869 void init_run_cpu(genesis_context * gen, FILE * address_log, char * statefile, uint8_t * debugger)
870 { 870 {
871 m68k_context context; 871 m68k_context context;
872 x86_68k_options opts; 872 m68k_options opts;
873 gen->m68k = &context; 873 gen->m68k = &context;
874 memmap_chunk memmap[MAX_MAP_CHUNKS]; 874 memmap_chunk memmap[MAX_MAP_CHUNKS];
875 uint32_t num_chunks; 875 uint32_t num_chunks;
876 void * initial_mapped = NULL; 876 void * initial_mapped = NULL;
877 gen->save_ram = NULL; 877 gen->save_ram = NULL;