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