grape/source/emu.h

26 lines
339 B
C
Raw Normal View History

2013-10-13 18:31:57 +00:00
#ifndef EMU_H
#define EMU_H
#include <stdio.h>
#include "disk.h"
#include "cpu.h"
#include "video.h"
#include "mem.h"
#include "state.h"
#define INPUT_JSTK 0
#define INPUT_KBD 1
int emu_vsync;
int emu_input;
2014-04-28 16:44:50 +00:00
int emu_screen;
int emu_scale;
2013-10-13 18:31:57 +00:00
2014-04-28 16:44:50 +00:00
static char *basename = NULL;
2013-10-13 18:31:57 +00:00
void emu_init ();
void emu_run ();
void emu_reset ();
#endif