comparison xband.c @ 2499:d74d3998482c

Make some progress on compiling full emulator with new 68K core
author Michael Pavone <pavone@retrodev.com>
date Tue, 30 Apr 2024 00:02:14 -0700
parents 17c1c30e0d6f
children
comparison
equal deleted inserted replaced
2498:dffda054d218 2499:d74d3998482c
115 } 115 }
116 116
117 static xband *get_xband(genesis_context *gen) 117 static xband *get_xband(genesis_context *gen)
118 { 118 {
119 if (!gen->extra) { 119 if (!gen->extra) {
120 gen->extra = gen->m68k->options->gen.memmap[0].buffer; 120 gen->extra = gen->m68k->opts->gen.memmap[0].buffer;
121 gen->m68k->mem_pointers[2] = (uint16_t *)gen->save_storage; 121 gen->m68k->mem_pointers[2] = (uint16_t *)gen->save_storage;
122 } 122 }
123 return gen->extra; 123 return gen->extra;
124 } 124 }
125 125