comparison m68k_core.h @ 1102:c15896605bf2

Clean up symbol visiblity and delete a ltitle bit of dead code
author Michael Pavone <pavone@retrodev.com>
date Mon, 28 Nov 2016 22:45:46 -0800
parents faa3a4617f62
children 2eb54e24914e
comparison
equal deleted inserted replaced
1101:e2d345e351b5 1102:c15896605bf2
71 uint8_t ram_code_flags[]; 71 uint8_t ram_code_flags[];
72 } m68k_context; 72 } m68k_context;
73 73
74 typedef m68k_context *(*m68k_reset_handler)(m68k_context *context); 74 typedef m68k_context *(*m68k_reset_handler)(m68k_context *context);
75 75
76 void translate_m68k(m68k_options * opts, struct m68kinst * inst);
77 void translate_m68k_stream(uint32_t address, m68k_context * context); 76 void translate_m68k_stream(uint32_t address, m68k_context * context);
78 void start_68k_context(m68k_context * context, uint32_t address); 77 void start_68k_context(m68k_context * context, uint32_t address);
79 void resume_68k(m68k_context *context); 78 void resume_68k(m68k_context *context);
80 void init_m68k_opts(m68k_options * opts, memmap_chunk * memmap, uint32_t num_chunks, uint32_t clock_divider); 79 void init_m68k_opts(m68k_options * opts, memmap_chunk * memmap, uint32_t num_chunks, uint32_t clock_divider);
81 m68k_context * init_68k_context(m68k_options * opts, m68k_reset_handler reset_handler); 80 m68k_context * init_68k_context(m68k_options * opts, m68k_reset_handler reset_handler);