operation[operation.LDAX_B] = function (reg) {
    var add = reg.B + reg.C * 256;
    reg.A = reg.memory.read(add) + reg.memory.read(add + 1);
};