2019-01-11 22:42:16 +00:00
|
|
|
#ifndef sm83_cpu_h
|
|
|
|
#define sm83_cpu_h
|
2018-05-27 16:30:23 +00:00
|
|
|
#include "gb_struct_def.h"
|
|
|
|
#include <stdint.h>
|
2017-04-17 17:16:17 +00:00
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
void GB_cpu_disassemble(GB_gameboy_t *gb, uint16_t pc, uint16_t count);
|
2017-04-17 17:16:17 +00:00
|
|
|
#ifdef GB_INTERNAL
|
2016-06-18 17:29:11 +00:00
|
|
|
void GB_cpu_run(GB_gameboy_t *gb);
|
2017-04-17 17:16:17 +00:00
|
|
|
#endif
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2019-01-11 22:42:16 +00:00
|
|
|
#endif /* sm83_cpu_h */
|