Difference between two instructions?
mov byte [num1],5
mov word [num1],5
mov byte [num1],5
mov word [num1],5
In first instruction, The variable num1 is treated as a byte and similarly 5 is also treated as byte.
In 2nd instruction, The variable num1 is treated as a word and similarly 5 is also treated as word.
In 2nd instruction, The variable num1 is treated as a word and similarly 5 is also treated as word.
0 Comments
Please add nice comments or answer ....