Load memory double word into word register and DS.Algorithm:
Load memory double word into word register and DS.
Algorithm:
LDS Reg,memory
.model small .data memory dd 12345678h ... .code ... ... LDS AX,memory ;AX is set to 1234h, DS is set to 5678h ... ... end