I want to create an array in memory like I would in C with
int i[] = {0,2,3,124,324,23,3,2}
How to do this in ARM assembly? Apparently I could declare some values like this:
AREA mydata, DATA
array DCD 0,2,3,124,324,23,3,2
But how to copy them to RAM in the most easiest way?