Let’s say I have this 2 lines of code:
ORG $8100
X DC 1,2,3,4,5,...
EX EQU X+$10
What does X+$10 mean?
(On motorola 68000)
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.
$indicates a hexadecimal constant, in this case 10 hex, or 16 decimal. Someans that the
EXvariable is defined to be 16 more than theXvariable.In this example,
Xhappens to be 8100 hex and soEXwould be 8110 hex.