1.

The value stored in the registers AX, BX after the execution of the following code snippet is MOV AX, 10 MOV BX, 2 CMP AX, BX​

Answer»

ong>Answer:

  • MOV AX,@DATA is the FIRST line of code that gets run. I believe @DATA is a variable that holds the value of the location in memory where the data segment lives. ... MOV DS,AX will then set that memory location as the variable DS which is a standard variable (or REGISTER in this case) for 8086 ASSEMBLY.



Discussion

No Comment Found