gbemu/include/emu.h

12 lines
175 B
C
Raw Normal View History

2025-01-30 14:30:19 -07:00
#pragma once
#include <common.h>
typedef struct {
bool paused;
bool running;
u64 ticks;
} emu_context;
int emu_run(int, char**);
emu_context *emu_get_context();