mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 14:42:33 +01:00
8 lines
189 B
C
8 lines
189 B
C
#ifndef z80_cpu_h
|
|
#define z80_cpu_h
|
|
#include "gb.h"
|
|
void cpu_disassemble(GB_gameboy_t *gb, unsigned short pc, unsigned short count);
|
|
void cpu_run(GB_gameboy_t *gb);
|
|
|
|
#endif /* z80_cpu_h */
|