I'm trying to place some ARM assembly code in a particular location in memory. I've always been able to do this with an ORG directive when I was coding in non-ARM assembly. When I do a google search it looks like I should also be able to use this directive in ARM assembly, but when I try either of these:
org 0x0000800
.org 0x0000800
I get compilation errors.
Can anyone tell me what I need to do in order to place my ARM assembly instructions at a particular place in memory?
Thank you.