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

S3C4510B 参数 Datasheet PDF下载

S3C4510B图片预览
型号: S3C4510B
PDF下载: 下载PDF文件 查看货源
内容描述: 三星S3C4510B的16位/ 32位RISC微控制器是一款高性价比,高性能的基于以太网的系统微控制器解决方案。 [Samsungs S3C4510B 16/32-bit RISC microcontroller is a cost-effective, high-performance microcontroller solution for Ethernet-based systems.]
分类和应用: 微控制器以太网
文件页数/大小: 422 页 / 2160 K
品牌: SAMSUNG [ SAMSUNG ]
 浏览型号S3C4510B的Datasheet PDF文件第100页浏览型号S3C4510B的Datasheet PDF文件第101页浏览型号S3C4510B的Datasheet PDF文件第102页浏览型号S3C4510B的Datasheet PDF文件第103页浏览型号S3C4510B的Datasheet PDF文件第105页浏览型号S3C4510B的Datasheet PDF文件第106页浏览型号S3C4510B的Datasheet PDF文件第107页浏览型号S3C4510B的Datasheet PDF文件第108页  
INSTRUCTION SET  
Multiplication by 6  
S3C4510B  
ADD  
MOV  
Ra,Ra,Ra,LSL #1  
Ra,Ra,LSL#1  
; Multiply by 3  
; and then by 2  
Multiply by 10 and add in extra number  
ADD  
ADD  
Ra,Ra,Ra,LSL#2  
Ra,Rc,Ra,LSL#1  
; Multiply by 5  
; Multiply by 2 and add in next digit  
General recursive method for Rb := Ra*C, C a constant:  
1. If C even, say C = 2^n*D, D odd:  
D=1:  
D<>1:  
MOV  
MOV Rb,Ra,LSL #n  
{Rb := Ra*D}  
Rb,Rb,LSL #n  
2. If C MOD 4 = 1, say C = 2^n*D+1, D odd, n>1:  
D=1:  
D<>1:  
ADD  
ADD Rb,Ra,Ra,LSL #n  
{Rb := Ra*D}  
Rb,Ra,Rb,LSL #n  
3. If C MOD 4 = 3, say C = 2^n*D-1, D odd, n>1:  
D=1:  
D<>1:  
RSB  
RSB Rb,Ra,Ra,LSL #n  
{Rb := Ra*D}  
Rb,Ra,Rb,LSL #n  
This is not quite optimal, but close. An example of its non-optimality is multiply by 45 which is done by:  
RSB  
RSB  
ADD  
Rb,Ra,Ra,LSL#2  
Rb,Ra,Rb,LSL#2  
Rb,Ra,Rb,LSL# 2  
; Multiply by 3  
; Multiply by 4*3-1 = 11  
; Multiply by 4*11+1 = 45  
rather than by:  
ADD  
ADD  
Rb,Ra,Ra,LSL#3  
Rb,Rb,Rb,LSL#2  
; Multiply by 9  
; Multiply by 5*9 = 45  
3-62  
 复制成功!