summaryrefslogtreecommitdiff
path: root/emu/emul.h
blob: 694514321634c67b2540408d1283ec10e2bfd336 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef EMUL_H
#define EMUL_H

#include "6502.h"
#include "bus.h"

#include <stdbool.h>

#ifdef WITH_GUI
#include <SDL.h>
#endif

enum {
	ROM_START = 0xf800,
	ROM_END   = 0xffff,
	ROM_SIZE  = 2048,
	
	RAM_START = 0x0000,
	RAM_END   = 0x01ff,
	RAM_SIZE  = 512,
	
	VIA_START = 0x6000,
	VIA_END   = 0x600f,
	
	CPU_FREQUENCY = 1000000,
	
	DISPLAY_FPS = 25
};

typedef struct emul_t {
	cpu_6502_t *cpu;
	bus_t *bus;
	bool gui;
	int width;
	int height;
#ifdef WITH_GUI
	SDL_Window *window;
	SDL_Renderer *renderer;
	SDL_Surface *background_image;
	SDL_Texture *background_texture;
#endif
} emul_t;

void emul_init( emul_t *emul, cpu_6502_t *cpu, bus_t *bus, int width, int height );
void emul_start( emul_t *emul );
void emul_run( emul_t *emul, int nof_steps );
void emul_free( emul_t *emul );

#endif