Are there any good/elaborate ASM tutorials around?
Posted: Tue Dec 29, 2015 9:41 pm
I've seen a few tutorials here and there that have been very helpful in learning some of the more basic op codes and working with data registers, but I haven't found much in terms of using the address registers. I guess what I'm asking for is almost a "hand held" (I really hate that term) tutorial that shows examples and breaks it down for someone who's used to higher level languages.
For example, one thing I'm not 100% sure on (and don't know the proper terminology to search google effectively) would be:
I'm assuming the above snippet would be moving the longword from d0 and putting it in the address register a2, and decrements the address by a longword, and the 2nd line does the opposite and increments the address? Another question I have is how large are these address registers? Do they operate from a specific memory range?
But yea, these are the types of things I have questions on, and I really don't want to be that annoying member who constantly posts silly, newbie questions
Thanks!
For example, one thing I'm not 100% sure on (and don't know the proper terminology to search google effectively) would be:
Code: Select all
move.l d0,-(a2)
move.l d2, (a4)+
But yea, these are the types of things I have questions on, and I really don't want to be that annoying member who constantly posts silly, newbie questions

Thanks!