From 79b5a01d1037edc0fe3a10e7db61820fa89def66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= Date: Sun, 29 Jan 2017 13:57:20 +0100 Subject: [PATCH] Add forgotten prototype of program_counter_branch(). --- src/instruction.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/instruction.h b/src/instruction.h index 29cf621..9e2c762 100644 --- a/src/instruction.h +++ b/src/instruction.h @@ -53,5 +53,6 @@ void stack_push(rk65c02emu_t *, uint8_t); uint8_t stack_pop(rk65c02emu_t *); void program_counter_increment(rk65c02emu_t *, instrdef_t *); bool instruction_modify_pc(instrdef_t *); +void program_counter_branch(rk65c02emu_t *, int8_t); #endif /* _INSTRUCTION_H_ */