1.

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

Answer»

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