For reference, the code is for the motorola 68008.
Say I have code such as the following:
org 200
sequenceO: ds.b 5
sequenceN: ds.b 5
move.w #sequenceO, A0
move.w #sequenceN, A1
Am I correct in thinking that A0 will hold the value 200 and A1 the value 205?
One of the exam questions in a past paper was: "What are the physical addresses of sequence0 and sequenceN?", would the answer be "200 and 205", or would it be "200-204 and 205-209"?
I've seen a few pieces of code with multiple org directives, eg;
org 100
array1: ds.b 4
org 300
Am I right in thinking that the last org directive is followed, eg in this case, array1 points to 300?