operation[operation.LDAX_D] = function (reg) {
    var add = reg.D + reg.E * 256;
    reg.A = reg.memory.read(add) + reg.memory.read(add + 1);
};