以下是引用自keil动官方文档...............................................................
DWORD
The DWORD macro accesses individual words in the internal data and idata memory of the 8051. You may use this macro in your programs as follows:
#include /* Include Macro Definitions */
.
.
.
rval = DWORD [0x0002];
DWORD [0x0002] = 57;
.
.
.
This example reads and writes the contents of the word in internal data memory at address 0004h (2 × sizeof (unsigned int) = 4).
The range of valid index values for this macro is 0-127.
Note
The index used with this macro does not represent the memory address of the integer value. To obtain the memory address, you must multiply the index by the size of an integer (2 bytes).