Texas Instruments MSP430x1xx User Manual

Page 403

Advertising
background image

Instruction Set Overview

B-53

Instruction Set Description

* SETC

Set carry bit

Syntax

SETC

Operation

1 –> C

Emulation

BIS

#1,SR

Description

The carry bit (C) is set.

Status Bits

N: Not affected
Z: Not affected
C: Set
V: Not affected

Mode Bits

OscOff, CPUOff, and GIE are not affected.

Example

Emulation of the decimal subtraction:
Subtract R5 from R6 decimally
Assume that R5 = 3987 and R6 = 4137

DSUB

ADD

#6666h,R5

; Move content R5 from 0–9 to 6–0Fh
; R5 = 03987 + 6666 = 09FEDh

INV

R5

; Invert this (result back to 0–9)
; R5 = .NOT. R5 = 06012h

SETC

; Prepare carry = 1

DADD

R5,R6

; Emulate subtraction by addition of:
; (10000 – R5 – 1)
; R6 = R6 + R5 + 1
; R6 = 4137 + 06012 + 1 = 1 0150 = 0150

Advertising