欢迎访问ic37.com |
会员登录 免费注册
发布采购

EM73962A 参数 Datasheet PDF下载

EM73962A图片预览
型号: EM73962A
PDF下载: 下载PDF文件 查看货源
内容描述: 4位微控制器 [4-BIT MICROCONTROLLER]
分类和应用: 微控制器
文件页数/大小: 35 页 / 322 K
品牌: ELAN [ ELAN MICROELECTRONICS CORP ]
 浏览型号EM73962A的Datasheet PDF文件第3页浏览型号EM73962A的Datasheet PDF文件第4页浏览型号EM73962A的Datasheet PDF文件第5页浏览型号EM73962A的Datasheet PDF文件第6页浏览型号EM73962A的Datasheet PDF文件第8页浏览型号EM73962A的Datasheet PDF文件第9页浏览型号EM73962A的Datasheet PDF文件第10页浏览型号EM73962A的Datasheet PDF文件第11页  
EM73962A  
4-BIT MICROCONTROLLER  
There are three addressing modes in the data memory :  
(1) Indirect addressing mode:  
The bank is selected by P9.3. When P9.3 is cleared to "0", the bank 0 is selected.  
When P9.3 is set to "1", the bank 1 is selected. The address in the bank are specified by the HL registers.  
P9.3  
HR LR  
RAM address  
PROGRAM EXAMPLE: Load the data of RAM address "143h" to RAM address "023h".  
SEP P9,3 ; P9.31  
LDL #3h ; LR3  
LDH #4h ; HR4  
LDAM  
; AccRAM[134h]  
CLP P9,3 ; P9.3← 0  
LDL #2h ; LR2  
LDH #3h ; HR3  
STAM  
; RAM[023h]Acc  
(2) Direct addressing mode:  
The bank is selected by P9.3. When P9.3 is cleared to "0", the bank 0 is selected.  
When P9.3 is set to "1", the bank 1 is selected. The address in the bank are directly specified by 8 bits of the  
second byte in the instruction field.  
instruction field  
xxxxxxxx  
P9.3  
xxxxxxxx  
RAM address  
PROGRAM EXAMPLE: Load the data of RAM address "143h" to RAM address "023h".  
SEP P9,3 ; P9.31  
LDA 43h ; AccRAM[134h]  
CLP P9,3 ; P9.3← 0  
STA 23h ; RAM[023h]Acc  
(3) Zero-page addressing mode:  
The zero-page is the bank 0 (address 000h~00Fh). The address are the lower 4 bits of the second byte in the  
instruction field.  
instruction field  
yyyy  
yyyy  
0000  
0
RAM address  
PROGRAM EXAMPLE: Write immediate "0Fh" to RAM address "005h".  
STD #0Fh, 05h ; RAM[05h]0Fh  
* This specification are subject to be changed without notice.  
10.8.2001  
7