I’ve started to learn asm, and I wondered what is the difference between these two different ways of using the MOV instruction into AL:
First:
MOV AL,5H
Second:
MOV SI,5H
MOV AL,[SI]
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Those two do different things.
There is easy wikibook about x86 assembly that will better explain the concepts and syntax to you: x86 Assembly. Assembly is generally easy language, but it’s best to just follow tutorial/book about it, to first fully understand syntax, and then – and only then – jump into wild world of assembly reading and writing.
Also, for other resources, you can look here.