您的位置:首页 > 理论基础 > 计算机网络

学习单片机XDATA-- 单片机官方网站http://www.keil.com/support/man/docs/c51/c51_le_memtypes.htm

2012-04-09 22:58 841 查看
http://www.keil.com/support/man/docs/c51/c51_le_memtypes.htm

The Cx51 Compiler provides access to all 8051 memory areas. Variables may be explicitly assigned to a specific memory space (by including a memory type specifier in the declaration) or implicitly assigned (based on the memory model).

The following table summarizes the memory type specifiers you may use.

Memory TypeDescription
codeProgram memory (64 KBytes); accessed by opcode MOVC @A+DPTR.
dataDirectly addressable internal data memory; fastest access to variables (128 bytes).
idataIndirectly addressable internal data memory; accessed across the full internal address space (256 bytes).
bdataBit-addressable internal data memory; supports mixed bit and byte access (16 bytes).
xdataExternal data memory (64 KBytes); accessed by opcode MOVX @DPTR.
farExtended RAM and ROM memory spaces (up to 16MB); accessed by user defined routines or specific chip extensions (Philips 80C51MX, Dallas 390).
pdataPaged (256 bytes) external data memory; accessed by opcode MOVX @Rn.
As with the signed and unsigned attributes, you may include memory type specifiers in the variable declaration. For example:

char data var1;
char code text[] = "ENTER PARAMETER:";
unsigned long xdata array[100];
float idata x,y,z;
unsigned int pdata dimension;
unsigned char xdata vector[10][4][4];
char bdata flags;



Note

For compatibility with previous versions of the C51 Compiler, you may specify the memory area before the data type. For example, the following two declarations are equivalent:

data char x;   // Old-Style Memory Type Declaration
char data x;   // New-Style Memory Type Declaration

Nonetheless, this feature should not be used in new programs because it may not be supported in future versions of the Cx51 Compiler. Be careful when using the old C51 syntax with memory-specific pointers. For example, the following two declarations are equivalent:

data char *x;   // Old-Style Memory Type Declaration
char *data x;   // New-Style Memory Type Declaration


Accessing the internal data memory is considerably faster than accessing the external data memory. For this reason, place frequently used variables in internal data memory. Place larger, less frequently used variables in external data memory.

If no memory type is specified for a variable, the compiler implicitly locates the variable in the default memory space determined by the memory model: SMALL, COMPACT, or LARGE. Function arguments and automatic variables that cannot be located in registers are also stored in the default memory area. Refer to Memory Models for more information.


Related Knowledgebase Articles

C51: INTERRUPTS AND LOCAL VARIABLES
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐