Tagged Questions
2
votes
1answer
157 views
How can I take mod of a number in assembly in Motorola M6800
How can I take mod of a number for instance a%9 in assembly in Motorola M6800.Please tell me which mnemonics should I use.
2
votes
1answer
297 views
1
vote
4answers
543 views
Passing parameters on the stack
When you pass parameters to a function on the cpu stack,
You put the parameters on then JSR puts the return address on the stack.
So that means in your function you must take the top item of the ...
0
votes
1answer
276 views
Assembly 6800 Looping? Testing specific bits in a word
Trying to help a friend out with a friend out with some assembly code, but I've run into a small problem.
I'm trying to work out how I would loop through a 8 bit binary word and check the value of ...
0
votes
3answers
2k views
What does the ORG directive do in assembly code?
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 ...