From e91cbebc12a0c851d38435741578e5d38a950f1b Mon Sep 17 00:00:00 2001 From: ArthurFerreira2 Date: Sun, 9 Aug 2020 12:59:57 +0200 Subject: [PATCH] Update puce6502.c --- puce6502.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/puce6502.c b/puce6502.c index 002eaa8..e907ab0 100644 --- a/puce6502.c +++ b/puce6502.c @@ -42,8 +42,9 @@ extern uint8_t softSwitches(uint16_t address, uint8_t value); struct Operand { uint8_t code; + uint8_t value; + uint16_t address; bool setAcc; - uint16_t value, address; } ope; struct Register {