#14701 - KickFlip - Sun Jan 11, 2004 8:15 pm
Like 0x6000000 is the beginning location of screen. And how do I alter them (especcialy the 0x4000000 one)
Thanks!
Thanks!
Code: |
write_something() { int* p = (int*) 0x1234; // pointer to address 0x1234 (as int) *p = 500; // put the int 500 there *((int*) 0x1234) = 500; // same thing but shorter } |