cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Storing data to CPU memory?
Storing data to CPU memory?
Mar 27, 2013 at 1:07am UTC
tomz6
(16)
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?
Mar 27, 2013 at 6:35am UTC
MiiNiPaa
(8886)
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
Mar 27, 2013 at 6:36am UTC
Topic archived. No new replies allowed.