Tagged Questions

0
votes
1answer
31 views

m68k Hex to Decimal not working right

I'm writing a small OS for a M68k computer that I'm developing, and I've ran into a little issue. I need to be able to show the user a hexadecimal value (say $1F) in decimal (31.) I've written the ...
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 ...