by MattMadMa » Jan 6, 2003 @ 2:23am
Thanks for the info! I'll try not to forget :). I have another question though, on MSDN, I found this:
The following code example shows how VirtualCopy is called to map a 128-KB region at physical address 0x64000000.
VirtualCopy(
pvDest, (void *)(0x64000000/256), 128*1024,
PAGE_READWRITE | PAGE_PHYSICAL | PAGE_NOCACHE);
Why divide 0x64000000 by 256?