comparison backend.h @ 601:f0061e3d2ad9

Fix a few bugs introduced in the Z80 core from the adjustments to fit with the code gen refactor
author Michael Pavone <pavone@retrodev.com>
date Fri, 26 Dec 2014 15:45:31 -0800
parents 5ef3fe516da9
children 39d7d463ed5b
comparison
equal deleted inserted replaced
600:a9dcaacdc0c5 601:f0061e3d2ad9
106 void process_deferred(deferred_addr ** head_ptr, void * context, native_addr_func get_native); 106 void process_deferred(deferred_addr ** head_ptr, void * context, native_addr_func get_native);
107 107
108 void cycles(cpu_options *opts, uint32_t num); 108 void cycles(cpu_options *opts, uint32_t num);
109 void check_cycles_int(cpu_options *opts, uint32_t address); 109 void check_cycles_int(cpu_options *opts, uint32_t address);
110 void check_cycles(cpu_options * opts); 110 void check_cycles(cpu_options * opts);
111 void check_code_prologue(code_info *code);
111 112
112 code_ptr gen_mem_fun(cpu_options * opts, memmap_chunk const * memmap, uint32_t num_chunks, ftype fun_type, code_ptr *after_inc); 113 code_ptr gen_mem_fun(cpu_options * opts, memmap_chunk const * memmap, uint32_t num_chunks, ftype fun_type, code_ptr *after_inc);
113 114
114 #endif //BACKEND_H_ 115 #endif //BACKEND_H_
115 116