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

Z8F1602AR020EC 参数 Datasheet PDF下载

Z8F1602AR020EC图片预览
型号: Z8F1602AR020EC
PDF下载: 下载PDF文件 查看货源
内容描述: Z8喝采微控制器与闪存和10位A / D转换器 [Z8 Encore Microcontrollers with Flash Memory and 10-Bit A/D Converter]
分类和应用: 转换器闪存微控制器和处理器外围集成电路时钟
文件页数/大小: 246 页 / 1767 K
品牌: ZILOG [ ZILOG, INC. ]
 浏览型号Z8F1602AR020EC的Datasheet PDF文件第196页浏览型号Z8F1602AR020EC的Datasheet PDF文件第197页浏览型号Z8F1602AR020EC的Datasheet PDF文件第198页浏览型号Z8F1602AR020EC的Datasheet PDF文件第199页浏览型号Z8F1602AR020EC的Datasheet PDF文件第201页浏览型号Z8F1602AR020EC的Datasheet PDF文件第202页浏览型号Z8F1602AR020EC的Datasheet PDF文件第203页浏览型号Z8F1602AR020EC的Datasheet PDF文件第204页  
Z8F640x/Z8F480x/Z8F320x/Z8F240x/Z8F160x  
Z8 Encore!®  
182  
eZ8 CPU Instruction Set  
Assembly Language Programming Introduction  
The eZ8 CPU assembly language provides a means for writing an application program  
without having to be concerned with actual memory addresses or machine instruction for-  
mats. A program written in assembly language is called a source program. Assembly lan-  
guage allows the use of symbolic addresses to identify memory locations. It also allows  
mnemonic codes (opcodes and operands) to represent the instructions themselves. The  
opcodes identify the instruction while the operands represent memory locations, registers,  
or immediate data values.  
Each assembly language program consists of a series of symbolic commands called state-  
ments. Each statement can contain labels, operations, operands and comments.  
Labels can be assigned to a particular instruction step in a source program. The label iden-  
tifies that step in the program as an entry point for use by other instructions.  
The assembly language also includes assembler directives that supplement the machine  
instruction. The assembler directives, or pseudo-ops, are not translated into a machine  
instruction. Rather, the pseudo-ops are interpreted as directives that control or assist the  
assembly process.  
The source program is processed (assembled) by the assembler to obtain a machine lan-  
guage program called the object code. The object code is executed by the eZ8 CPU. An  
example segment of an assembly language program is detailed in the following example.  
Assembly Language Source Program Example  
JP START  
START:  
; Everything after the semicolon is a comment.  
; A label called “START”. The first instruction (JP START) in this  
; example causes program execution to jump to the point within the  
; program where the STARTlabel occurs.  
LD R4, R7  
; A Load (LD) instruction with two operands. The first operand,  
; Working Register R4, is the destination. The second operand,  
; Working Register R7, is the source. The contents of R7 is  
; written into R4.  
LD 234H, #%01 ; Another Load (LD) instruction with two operands.  
; The first operand, Extended Mode Register Address 234H,  
; identifies the destination. The second operand, Immediate Data  
PS017610-0404  
eZ8 CPU Instruction Set  
 复制成功!