欢迎访问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文件第97页浏览型号S3C4510B的Datasheet PDF文件第98页浏览型号S3C4510B的Datasheet PDF文件第99页浏览型号S3C4510B的Datasheet PDF文件第100页浏览型号S3C4510B的Datasheet PDF文件第102页浏览型号S3C4510B的Datasheet PDF文件第103页浏览型号S3C4510B的Datasheet PDF文件第104页浏览型号S3C4510B的Datasheet PDF文件第105页  
S3C4510B  
INSTRUCTION SET  
INSTRUCTION SET EXAMPLES  
The following examples show ways in which the basic ARM7TDMI instructions can combine to give efficient  
code. None of these methods saves a great deal of execution time (although they may save some), mostly they  
just save code.  
USING THE CONDITIONAL INSTRUCTIONS  
Using Conditionals for Logical OR  
CMP  
BEQ  
CMP  
BEQ  
Rn,#p  
Label  
Rm,#q  
Label  
; If Rn=p OR Rm=q THEN GOTO Label.  
This can be replaced by  
CMP  
CMPNE  
BEQ  
Rn,#p  
Rm,#q  
Label  
; If condition not satisfied try other test.  
Absolute Value  
TEQ  
Rn,#0  
; Test sign  
RSBMI  
Rn,Rn,#0  
; and 2's complement if necessary.  
Multiplication by 4, 5 or 6 (Run Time)  
MOV  
CMP  
Rc,Ra,LSL#2  
Rb,#5  
; Multiply by 4,  
; Test value,  
ADDCS  
ADDHI  
Rc,Rc,Ra  
Rc,Rc,Ra  
; Complete multiply by 5,  
; Complete multiply by 6.  
Combining Discrete and Range Tests  
TEQ  
CMPNE  
MOVLS  
Rc,#127  
Rc,# ” ”-1  
Rc,# “”  
; Discrete test,  
; Range test  
; IF Rc<= ”” OR Rc=ASCII(127)  
; THEN Rc:= ” ”  
3-59  
 复制成功!