Keil™, An ARM® Company

Technical Support

A51: INSTRUCTION GENERATED BY PDATA OR XDATA VARIABLE


Information in this article applies to:

  • C251 Version 1.x
  • C251 Version 2.x
  • C251 Version 3.x
  • C51 Version 5.x
  • C51 Version 6.x

QUESTION

I'm using PDATA and XDATA in my project. What assembly language instructions are generated for accesses to these memory areas:

ANSWER

PDATA refers to one 256-byte "page" external data. Therefore, PDATA pointers may be stored in a single byte. PDATA memory is accesses using the MOVX @R0 and MOVX @R1 instructions. The upper byte of a PDATA address comes directly from the P2 register. Refer to the startup code in STARTUP.A51 for information on how to set P2.

XDATA refers to the full 64K of addressable external data. Therefore, XDATA pointers may be stored in a word (2 bytes). XDATA memory is accessed using the MOVX @DPTR instruction.

MORE INFORMATION

  • Refer to MOVX in the 8051 Instruction Set Manual.

FORUM THREADS

The following Discussion Forum threads may provide information related to this topic.

Last Reviewed: Thursday, September 22, 2005


Did this article provide the answer you needed?
 
Yes
No
Not Sure