From d0737d93433f09d9d1024d768a5c97b83f311a6a Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Date: Mon, 19 Jul 2021 14:54:33 +0100 Subject: Feature: Added a font --- emulator.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'emulator.h') diff --git a/emulator.h b/emulator.h index b685bea..cfbbeff 100644 --- a/emulator.h +++ b/emulator.h @@ -2,7 +2,8 @@ #define _EMULATOR_H_ #include -#include +#include +#include typedef struct { @@ -37,6 +38,7 @@ typedef struct uint8_t memory[4096]; } Emulator; +int emulator_initialise(Emulator* emulator); int emulator_load_rom(Emulator* emulator, char* rom_name); int emulator_tick(Emulator* emulator); -- cgit 1.4.1