AtomicChip
Programmer
I feel a little sheepish about asking this question, but let's say I have a doc that says something I need is at memory address 0400:0130h... How do you go about converting that into hex so that you can declare a pointer something like:
unsigned char* pMemLoc = (unsigned char*)0x06000000;
..And then be able to write to it by *pMemLoc = 0xBEEF?
Thanks in advance...
-----------------------------------------------
"The night sky over the planet Krikkit is the least interesting sight in the entire universe."
-Hitch Hiker's Guide To The Galaxy
unsigned char* pMemLoc = (unsigned char*)0x06000000;
..And then be able to write to it by *pMemLoc = 0xBEEF?
Thanks in advance...
-----------------------------------------------
"The night sky over the planet Krikkit is the least interesting sight in the entire universe."
-Hitch Hiker's Guide To The Galaxy