linux compatibility

This commit is contained in:
Benjamin Jones 2019-09-05 12:17:08 -07:00
parent a86f9e23d3
commit 6ea0d13a9e
1 changed files with 0 additions and 1 deletions

1
cpu.c
View File

@ -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);