public static void execute(CPU cpu, MEM memory) { switch (memory.getMem(cpu.PC)) { case 0xE6: case 0xEE: INC.INC_ZP(cpu, memory); return; case 0xF6: case 0xFE: return; } }