aboutsummaryrefslogtreecommitdiffstats
path: root/src/cpu.h
blob: 84159517547033342bc399e6fab0f19ab249a973 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef GBC_CPU_H
#define GBC_CPU_H

#include "gb.h"

// Execute one instruction (or handle interrupt / halt). Returns T-cycles used.
int cpu_step(GB *gb);

#endif