Instruction Set
3-52
RISC 16-Bit CPU
MOV[.W]
Move source to destination
MOV.B
Move source to destination
Syntax
MOV
src,dst or MOV.W src,dst
MOV.B
src,dst
Operation
src −> dst
Description
The source operand is moved to the destination.
The source operand is not affected. The previous contents of the destination
are lost.
Status Bits
Status bits are not affected.
Mode Bits
OSCOFF, CPUOFF, and GIE are not affected.
Example
The contents of table EDE (word data) are copied to table TOM. The length
of the tables must be 020h locations.
MOV
#EDE,R10
; Prepare pointer
MOV
#020h,R9
; Prepare counter
Loop
MOV
@R10+,TOM−EDE−2(R10)
; Use pointer in R10 for both tables
DEC
R9
; Decrement counter
JNZ
Loop
; Counter
≠
0, continue copying
......
; Copying completed
......
......
Example
The contents of table EDE (byte data) are copied to table TOM. The length of
the tables should be 020h locations
MOV
#EDE,R10
; Prepare pointer
MOV
#020h,R9
; Prepare counter
Loop
MOV.B @R10+,TOM−EDE−1(R10)
; Use pointer in R10 for
; both tables
DEC
R9
; Decrement counter
JNZ
Loop
; Counter
≠
0, continue
; copying
......
; Copying completed
......
......
Содержание MSP430x4xx Family
Страница 1: ...MSP430x4xx Family 2007 Mixed Signal Products User s Guide SLAU056G ...
Страница 2: ......
Страница 6: ...vi ...
Страница 114: ...3 76 RISC 16 Bit CPU ...
Страница 304: ...5 20 FLL Clock Module ...
Страница 340: ...7 8 Supply Voltage Supervisor ...
Страница 348: ...8 8 16 Bit Hardware Multiplier ...
Страница 372: ...9 24 32 Bit Hardware Multiplier ...
Страница 400: ...10 28 DMA Controller ...
Страница 428: ...13 10 Basic Timer1 ...
Страница 466: ...15 24 Timer_A ...
Страница 522: ...17 30 USART Peripheral Interface UART Mode ...
Страница 544: ...18 22 USART Peripheral Interface SPI Mode ...
Страница 672: ...23 12 Comparator_A ...
Страница 692: ...24 20 LCD Controller ...
Страница 746: ...26 28 ADC12 ...