mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-21 21:52:21 +01:00
12 lines
244 B
C
12 lines
244 B
C
#ifndef sm83_cpu_h
|
|
#define sm83_cpu_h
|
|
#include "gb_struct_def.h"
|
|
#include <stdint.h>
|
|
|
|
void GB_cpu_disassemble(GB_gameboy_t *gb, uint16_t pc, uint16_t count);
|
|
#ifdef GB_INTERNAL
|
|
void GB_cpu_run(GB_gameboy_t *gb);
|
|
#endif
|
|
|
|
#endif /* sm83_cpu_h */
|