How do you allocate an array so it starts at certain place in memory? For example
.data
array:
.space 400
would make an array with 100 words, but I wish to let array start at, for example, 5000 in the memory. How can I do this? ( I remember in intel asm it being really easy)
edit: I am using spim in linux. btw does this really matter?