From 976a1b93fa7a43ae17bdcf1b39707c083e83b625 Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Date: Tue, 20 Jul 2021 20:57:40 +0100 Subject: Refractoring: Refractored the stepping of the PC into a function --- emulator.h | 1 + 1 file changed, 1 insertion(+) (limited to 'emulator.h') diff --git a/emulator.h b/emulator.h index 7fac868..489ad71 100644 --- a/emulator.h +++ b/emulator.h @@ -59,6 +59,7 @@ typedef struct int emulator_initialise(Emulator* emulator); int emulator_load_rom(Emulator* emulator, char* rom_name); int emulator_tick(Emulator* emulator); +void emulator_step(Emulator* emulator); void emulator_dump_registers(Emulator* emulator); void* emulator_timers_thread(); -- cgit 1.4.1