gbemu/include/emu.h

17 lines
272 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;
bool die;
2025-01-30 14:30:19 -07:00
u64 ticks;
2025-02-17 21:22:13 -07:00
const char *app_path;
2025-02-18 19:45:13 -07:00
bool fast_forward;
2025-01-30 14:30:19 -07:00
} emu_context;
int emu_run(int, char**);
2025-01-30 16:27:27 -07:00
emu_context *emu_get_context();
void emu_cycles(int cpu_cycles);