From 6ea0d13a9e5348325fcf633df6adc36dae6ce621 Mon Sep 17 00:00:00 2001 From: Benjamin Jones Date: Thu, 5 Sep 2019 12:17:08 -0700 Subject: [PATCH] linux compatibility --- cpu.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cpu.c b/cpu.c index 2dc09cf..9f69d6a 100644 --- a/cpu.c +++ b/cpu.c @@ -107,7 +107,6 @@ void execute_6502(CPU_6502 *cpu, uint8_t (*read)(uint16_t), void (*write)(uint16 //The first byte at PC uniquely determines the operation uint8_t opcode; uint16_t address1; - uint16_t address2; opcode = read(cpu->PC_reg);