operation[operation.JC] = function (reg, l, h) {
    if (reg.CARRY === 1) 
        reg.PC = h * 0x100 + l; 
    else
        reg.PC += 3;