Vault 7: Projects

This publication series is about specific projects related to the Vault 7 main publication.

16-bit MCU and DSC Programmer’s Reference Manual
DS70157F-page 208 © 2005-2011 Microchip Technology Inc.
CPSEQ
Compare Wb with Wn, Skip if Equal (Wb = Wn)
Implemented in: PIC24F PIC24H PIC24E dsPIC30F dsPIC33F dsPIC33E
X X
Syntax: {label:} CPSEQ{.B} Wb, Wn
Operands: Wb [W0 ... W15]
Wn [W0 ... W15]
Operation: (Wb) – (Wn)
Skip if (Wb) = (Wn)
Status Affected: None
Encoding: 1110 0111 1www wB00 0001 ssss
Description: Compare the contents of Wb with the contents of Wn by performing the
subtraction (Wb) – (Wn), but do not store the result. If (Wb) = (Wn), the
next instruction (fetched during the current instruction execution) is
discarded and on the next cycle, a NOP is executed instead. If
(Wb) (Wn), the next instruction is executed as normal.
The ‘w’ bits select the address of the Wb source register.
The ‘B’ bit selects byte or word operation (‘0’ for word, ‘1’ for byte).
The ‘s’ bits select the address of the Wn source register.
Note: The extension .B in the instruction denotes a byte operation
rather than a word operation. You may use a .W extension to
denote a word operation, but it is not required.
Words: 1
Cycles: 1 (2 or 3 if skip taken)
Example 1:
002000 HERE:CPSEQ.BW0, W1; If W0 = W1 (Byte mode),
002002GOTOBYPASS; skip the GOTO
002004 . . .
002006 . . .
002008 BYPASS: . . .
00200A . . .
Before
Instruction
After
Instruction
PC 00 2000 PC 00 2002
W0 1001 W0 1001
W1 1000 W1 1000
SR 0000 SR 0000

e-Highlighter

Click to send permalink to address bar, or right-click to copy permalink.

Un-highlight all Un-highlight selectionu Highlight selectionh