Is it allowed to do the following?:
mov CX, [EAX]
mov [EAX], CX
???
mov W1, [EAX]
mov [EAX],W1
where W1 is not doubleword (word or byte)
In plain english, what is the real difference between direct and indirect access mode ?
I can't find examples of invalid descriptions and the reasons why.
mov CX, [EAX]
mov [EAX], CX
???
mov W1, [EAX]
mov [EAX],W1
where W1 is not doubleword (word or byte)
In plain english, what is the real difference between direct and indirect access mode ?
I can't find examples of invalid descriptions and the reasons why.