comparison z80_to_x86.h @ 592:4ff7bbb3943b

Get rest of emulator compiling again with Z80 core enabled
author Michael Pavone <pavone@retrodev.com>
date Wed, 17 Dec 2014 23:03:19 -0800
parents 966b46c68942
children 5ef3fe516da9
comparison
equal deleted inserted replaced
591:966b46c68942 592:4ff7bbb3943b
65 uint32_t int_enable_cycle; 65 uint32_t int_enable_cycle;
66 uint16_t pc; 66 uint16_t pc;
67 } z80_context; 67 } z80_context;
68 68
69 void translate_z80_stream(z80_context * context, uint32_t address); 69 void translate_z80_stream(z80_context * context, uint32_t address);
70 void init_x86_z80_opts(z80_options * options, memmap_chunk * chunks, uint32_t num_chunks); 70 void init_x86_z80_opts(z80_options * options, memmap_chunk const * chunks, uint32_t num_chunks);
71 void init_z80_context(z80_context * context, z80_options * options); 71 void init_z80_context(z80_context * context, z80_options * options);
72 code_ptr z80_get_native_address(z80_context * context, uint32_t address); 72 code_ptr z80_get_native_address(z80_context * context, uint32_t address);
73 code_ptr z80_get_native_address_trans(z80_context * context, uint32_t address); 73 code_ptr z80_get_native_address_trans(z80_context * context, uint32_t address);
74 z80_context * z80_handle_code_write(uint32_t address, z80_context * context); 74 z80_context * z80_handle_code_write(uint32_t address, z80_context * context);
75 void z80_run(z80_context * context); 75 void z80_run(z80_context * context);
76 void z80_reset(z80_context * context); 76 void z80_reset(z80_context * context);
77 void zinsert_breakpoint(z80_context * context, uint16_t address, uint8_t * bp_handler); 77 void zinsert_breakpoint(z80_context * context, uint16_t address, uint8_t * bp_handler);
78 void zremove_breakpoint(z80_context * context, uint16_t address); 78 void zremove_breakpoint(z80_context * context, uint16_t address);
79 void * z80_gen_bank_write(uint32_t start_address, void * voptions);
79 80
80 #endif //Z80_TO_X86_H_ 81 #endif //Z80_TO_X86_H_
81 82