DBYTE
The DBYTE macro accesses individual bytes in the internal data and idata memory of the 8051. You may use this macro in your programs as follows:
#include <absacc.h> /* Include Macro Definitions */
.
.
.
rval = DBYTE [0x0002];
DBYTE [0x0002] = 5;
.
.
.
This example reads and writes the contents of the byte in internal data memory at address 0002h.
The range of valid index values for this macro is 0-255.