which one of this lines have bug and why?
MOV CX,BH
MOV AX,1000H
MOV AX,ES:70H
MOV AX,
thanks
MOV CX,BH
MOV AX,1000H
MOV AX,ES:70H
MOV AX,
thanks
1st: CH is 8bit and AX is 16bit
3rd: to access memory, you should enclose address in [ ] or use ptr operator.
exact syntax depens on which assembler you use
3rd: to access memory, you should enclose address in [ ] or use ptr operator.
exact syntax depens on which assembler you use
Homework?