T5L_ASIC Development Guide
D
WI
N
T
echnology
Pro
f
essional
,
Credi
t
able
,
Success
f
ul
3.2.3 Data Memory(32KBytes)
The OS 8051 CPU of T5L has 32KBytes RAM as data memory, corresponding to addresses 0x8000-
0xFFFF, and the related interface SFRs are listed below.
DPTR change mode after MOVX instruction operation.
DPC=0X00:DPTR remains unchanged after MOVX instruction operation. If developed using
C51, DPTR must be configured as 0x00
DPC=0X01 After MOVX instruction operation, DPTR=DPTR+1
DPC=0X03 After MOVX instruction operation, DPTR=DPTR-1
The address space from 0x0000 to 0x7FFF prohibit using MOVX instructions to read and write,
which may cause code to run abnormally.
The T5L's MOVX instruction is 3 instruction cycles (3T, 14.5nS at 11.0592MHz crystal), and the DPC
can be configured with DPTR auto increment (or decrement) mode, making the T5L much faster than
the standard 8051 for reading and writing data memory, especially for inverse order memory read
and write applications.
Example
;A=@8001, DPTR=8002 after reading