Storing data to CPU memory?

Is it possible to store data to CPU memory, if so how much memory can I store and how?

Say I wanted to store an array, about 6MB in size?
What do you mean by processor memory?
Registers? If so, you can using asm, but note that they a) Used in operations, b) cans store little data.
Cache? If so: no, you cannot. They are use exclusively by CPU itself for optimizations

EDIT:
http://www.daniweb.com/software-development/cpp/threads/451042/storing-data-to-cpu-memory
Looks like my answer was unnessesary after all...
Last edited on
Topic archived. No new replies allowed.