Complete 8086 instruction set[LDS]

LDS

Operands: REG, memory Load memory double word into word register and DS. Algorithm: REG = first word DS = second word Example: #make_COM# ORG 100h LDS AX, m RET m DW 1234h DW 5678h END AX is set to 1234h, DS is set to 5678h. Flags: C Z S O P A unchanged