Вы находитесь на странице: 1из 8

TABLE 15-2:

Mnemonic, Operands

PIC16F882/883/884/886/887 INSTRUCTION SET


14-Bit Opcode Description Cycles MSb BYTE-ORIENTED FILE REGISTER OPERATIONS LSb Status Affected Notes

ADDWF ANDWF CLRF CLRW COMF DECF DECFSZ INCF INCFSZ IORWF MOVF MOVWF NOP RLF RRF SUBWF SWAPF XORWF

f, d f, d f f, d f, d f, d f, d f, d f, d f, d f f, d f, d f, d f, d f, d

Add W and f AND W with f Clear f Clear W Complement f Decrement f Decrement f, Skip if 0 Increment f Increment f, Skip if 0 Inclusive OR W with f Move f Move W to f No Operation Rotate Left f through Carry Rotate Right f through Carry Subtract W from f Swap nibbles in f Exclusive OR W with f

1 1 1 1 1 1 1(2) 1 1(2) 1 1 1 1 1 1 1 1 1

00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

0111 0101 0001 0001 1001 0011 1011 1010 1111 0100 1000 0000 0000 1101 1100 0010 1110 0110

dfff dfff lfff 0xxx dfff dfff dfff dfff dfff dfff dfff lfff 0xx0 dfff dfff dfff dfff dfff

ffff ffff ffff xxxx ffff ffff ffff ffff ffff ffff ffff ffff 0000 ffff ffff ffff ffff ffff

C, DC, Z Z Z Z Z Z Z Z Z

1, 2 1, 2 2 1, 2 1, 2 1, 2, 3 1, 2 1, 2, 3 1, 2 1, 2

C C C, DC, Z Z

1, 2 1, 2 1, 2 1, 2 1, 2

BIT-ORIENTED FILE REGISTER OPERATIONS BCF BSF BTFSC BTFSS ADDLW ANDLW CALL CLRWDT GOTO IORLW MOVLW RETFIE RETLW RETURN SLEEP SUBLW XORLW Note 1: f, b f, b f, b f, b k k k k k k k k k Bit Clear f Bit Set f Bit Test f, Skip if Clear Bit Test f, Skip if Set Add literal and W AND literal with W Call Subroutine Clear Watchdog Timer Go to address Inclusive OR literal with W Move literal to W Return from interrupt Return with literal in W Return from Subroutine Go into Standby mode Subtract W from literal Exclusive OR literal with W 1 1 1 (2) 1 (2) 1 1 2 1 2 1 1 2 2 2 1 1 1 01 01 01 01 00bb 01bb 10bb 11bb bfff bfff bfff bfff ffff ffff ffff ffff C, DC, Z Z TO, PD Z 1, 2 1, 2 3 3

LITERAL AND CONTROL OPERATIONS 11 11 10 00 10 11 11 00 11 00 00 11 11 111x 1001 0kkk 0000 1kkk 1000 00xx 0000 01xx 0000 0000 110x 1010 kkkk kkkk kkkk 0110 kkkk kkkk kkkk 0000 kkkk 0000 0110 kkkk kkkk kkkk kkkk kkkk 0100 kkkk kkkk kkkk 1001 kkkk 1000 0011 kkkk kkkk

TO, PD C, DC, Z Z

2: 3:

When an I/O register is modified as a function of itself (e.g., MOVF GPIO, 1), the value used will be that value present on the pins themselves. For example, if the data latch is 1 for a pin configured as input and is driven low by an external device, the data will be written back with a 0. If this instruction is executed on the TMR0 register (and where applicable, d = 1), the prescaler will be cleared if assigned to the Timer0 module. If the Program Counter (PC) is modified, or a conditional test is true, the instruction requires two cycles. The second cycle is executed as a NOP.

DS41291F-page 232

2009 Microchip Technology Inc.

15.2
ADDLW Syntax:

Instruction Descriptions
Add literal and W [ label ] ADDLW 0 k 255 (W) Operation: Status Affected: Description: (W) + k C, DC, Z The contents of the W register are added to the eight-bit literal k and the result is placed in the W register. k BCF Syntax: Operands: Bit Clear f [ label ] BCF 0 0 0 f 127 b 7 (f<b>) f,b

Operands: Operation: Status Affected: Description:

None Bit b in register f is cleared.

ADDWF Syntax: Operands: Operation: Status Affected: Description:

Add W and f [ label ] ADDWF 0 d f 127 0,1 (destination) f,d

BSF Syntax: Operands: Operation: Status Affected: Description:

Bit Set f [ label ] BSF 0 0 1 f 127 b 7 (f<b>) f,b

(W) + (f) C, DC, Z

None Bit b in register f is set.

Add the contents of the W register with register f. If d is 0, the result is stored in the W register. If d is 1, the result is stored back in register f.

ANDLW Syntax: Operands: Operation: Status Affected: Description:

AND literal with W [ label ] ANDLW 0 Z The contents of W register are ANDed with the eight-bit literal k. The result is placed in the W register. k 255 (W) (W) .AND. (k) k

BTFSC Syntax: Operands: Operation: Status Affected: Description:

Bit Test f, Skip if Clear [ label ] BTFSC f,b 0 0 f 127 b 7

skip if (f<b>) = 0 None If bit b in register f is 1, the next instruction is executed. If bit b in register f is 0, the next instruction is discarded, and a NOP is executed instead, making this a two-cycle instruction.

ANDWF Syntax: Operands: Operation: Status Affected: Description:

AND W with f [ label ] ANDWF 0 d Z AND the W register with register f. If d is 0, the result is stored in the W register. If d is 1, the result is stored back in register f. f 127 0,1 (destination) f,d

(W) .AND. (f)

2009 Microchip Technology Inc.

DS41291F-page 233

BTFSS Syntax: Operands: Operation: Status Affected: Description:

Bit Test f, Skip if Set [ label ] BTFSS f,b 0 0 f 127 b<7

CLRWDT Syntax: Operands: Operation:

Clear Watchdog Timer [ label ] CLRWDT None 00h WDT 0 WDT prescaler, 1 TO 1 PD TO, PD CLRWDT instruction resets the Watchdog Timer. It also resets the prescaler of the WDT. Status bits TO and PD are set.

skip if (f<b>) = 1 None If bit b in register f is 0, the next instruction is executed. If bit b is 1, then the next instruction is discarded and a NOP is executed instead, making this a two-cycle instruction. Status Affected: Description:

CALL Syntax: Operands: Operation:

Call Subroutine [ label ] CALL k 0 k 2047 (PC)+ 1 TOS, k PC<10:0>, (PCLATH<4:3>) None Call Subroutine. First, return address (PC + 1) is pushed onto the stack. The eleven-bit immediate address is loaded into PC bits <10:0>. The upper bits of the PC are loaded from PCLATH. CALL is a two-cycle instruction.

COMF Syntax: Operands: Operation: PC<12:11> Status Affected: Description:

Complement f [ label ] COMF 0 d (f) Z The contents of register f are complemented. If d is 0, the result is stored in W. If d is 1, the result is stored back in register f. f 127 [0,1] (destination) f,d

Status Affected: Description:

CLRF Syntax: Operands: Operation: Status Affected: Description:

Clear f [ label ] CLRF 0 f 127 00h (f) 1 Z Z The contents of register f are cleared and the Z bit is set. f

DECF Syntax: Operands: Operation: Status Affected: Description:

Decrement f [ label ] DECF f,d 0 d Z Decrement register f. If d is 0, the result is stored in the W register. If d is 1, the result is stored back in register f. f 127 [0,1] (destination)

(f) - 1

CLRW Syntax: Operands: Operation: Status Affected: Description:

Clear W [ label ] CLRW None 00h (W) 1 Z Z W register is cleared. Zero bit (Z) is set.

DS41291F-page 234

2009 Microchip Technology Inc.

DECFSZ Syntax: Operands: Operation: Status Affected: Description:

Decrement f, Skip if 0 [ label ] DECFSZ f,d 0 d f 127 [0,1]

INCFSZ Syntax: Operands: Operation: Status Affected: Description:

Increment f, Skip if 0 [ label ] 0 d INCFSZ f,d

f 127 [0,1]

(f) - 1 (destination); skip if result = 0 None The contents of register f are decremented. If d is 0, the result is placed in the W register. If d is 1, the result is placed back in register f. If the result is 1, the next instruction is executed. If the result is 0, then a NOP is executed instead, making it a two-cycle instruction.

(f) + 1 (destination), skip if result = 0 None The contents of register f are incremented. If d is 0, the result is placed in the W register. If d is 1, the result is placed back in register f. If the result is 1, the next instruction is executed. If the result is 0, a NOP is executed instead, making it a two-cycle instruction.

GOTO Syntax: Operands: Operation: Status Affected: Description:

Unconditional Branch [ label ] 0 k GOTO k 2047 PC<12:11>

IORLW Syntax: Operands: Operation: Status Affected: Description:

Inclusive OR literal with W [ label ] 0 Z The contents of the W register are ORed with the eight-bit literal k. The result is placed in the W register. k IORLW k 255 (W)

k PC<10:0> PCLATH<4:3> None

(W) .OR. k

GOTO is an unconditional branch. The eleven-bit immediate value is loaded into PC bits <10:0>. The upper bits of PC are loaded from PCLATH<4:3>. GOTO is a two-cycle instruction.

INCF Syntax: Operands: Operation: Status Affected: Description:

Increment f [ label ] 0 d Z The contents of register f are incremented. If d is 0, the result is placed in the W register. If d is 1, the result is placed back in register f. INCF f,d

IORWF Syntax: Operands: Operation: Status Affected: Description:

Inclusive OR W with f [ label ] 0 d Z Inclusive OR the W register with register f. If d is 0, the result is placed in the W register. If d is 1, the result is placed back in register f. IORWF f,d

f 127 [0,1] (destination)

f 127 [0,1] (destination)

(f) + 1

(W) .OR. (f)

2009 Microchip Technology Inc.

DS41291F-page 235

MOVF Syntax: Operands: Operation: Status Affected: Description:

Move f [ label ] 0 d (f) Z The contents of register f is moved to a destination dependent upon the status of d. If d = 0, destination is W register. If d = 1, the destination is file register f itself. d = 1 is useful to test a file register since status flag Z is affected. 1 1
MOVF FSR, 0

MOVWF MOVF f,d Syntax: Operands: Operation: Status Affected: Description: Words: Cycles: Example:

Move W to f [ label ] 0 (W) None Move data from W register to register f. 1 1 MOVW F OPTION f (f) MOVWF f 127

f 127 [0,1] (dest)

Words: Cycles: Example:

Before Instruction OPTION = W = After Instruction OPTION = W =

0xFF 0x4F 0x4F 0x4F

After Instruction W = value in FSR register Z = 1

MOVLW Syntax: Operands: Operation: Status Affected: Description:

Move literal to W [ label ] 0 k k (W) MOVLW k 255

NOP Syntax: Operands: Operation: Status Affected: Description: Words: Cycles: Example:

No Operation [ label ] None No operation None No operation. 1 1


NOP

NOP

None The eight-bit literal k is loaded into W register. The dont cares will assemble as 0s. 1 1
MOVLW 0x5A

Words: Cycles: Example:

After Instruction W =

0x5A

DS41291F-page 236

2009 Microchip Technology Inc.

RETFIE Syntax: Operands: Operation: Status Affected: Description:

Return from Interrupt [ label ] None TOS PC, 1 GIE None Return from Interrupt. Stack is POPed and Top-of-Stack (TOS) is loaded in the PC. Interrupts are enabled by setting Global Interrupt Enable bit, GIE (INTCON<7>). This is a two-cycle instruction. 1 2
RETFIE

RETLW Syntax: Operands: Operation: Status Affected: Description:

Return with literal in W [ label ] 0 k RETLW k 255

RETFIE

k (W); TOS PC None The W register is loaded with the eight-bit literal k. The program counter is loaded from the top of the stack (the return address). This is a two-cycle instruction. 1 2 CALL TABLE;W contains table ;offset value ;W now has ;table value ADDWF PC ;W = offset RETLW k1 ;Begin table RETLW k2 ; RETLW kn ;End of table Before Instruction W = 0x07 After Instruction W = value of k8

Words: Cycles: Example:

Words: Cycles: Example:

After Interrupt PC = GIE =

TABLE TOS 1

RETURN Syntax: Operands: Operation: Status Affected: Description:

Return from Subroutine [ label ] None TOS None Return from subroutine. The stack is POPed and the top of the stack (TOS) is loaded into the program counter. This is a two-cycle instruction. PC RETURN

2009 Microchip Technology Inc.

DS41291F-page 237

RLF Syntax: Operands: Operation: Status Affected: Description:

Rotate Left f through Carry [ label ] 0 d C The contents of register f are rotated one bit to the left through the Carry flag. If d is 0, the result is placed in the W register. If d is 1, the result is stored back in register f.
C Register f

SLEEP Syntax: Operands: Operation:

Enter Sleep mode [ label ] SLEEP None 00h WDT, 0 WDT prescaler, 1 TO, 0 PD TO, PD The power-down Status bit, PD is cleared. Time-out Status bit, TO is set. Watchdog Timer and its prescaler are cleared. The processor is put into Sleep mode with the oscillator stopped.

RLF

f,d

f 127 [0,1]

See description below

Status Affected: Description:

Words: Cycles: Example:

1 1
RLF REG1,0 REG1 C = = = = = 1110 0110 0 1110 0110 1100 1100 1

Before Instruction

After Instruction
REG1 W C

RRF Syntax: Operands: Operation: Status Affected: Description:

Rotate Right f through Carry [ label ] 0 d C The contents of register f are rotated one bit to the right through the Carry flag. If d is 0, the result is placed in the W register. If d is 1, the result is placed back in register f.
C Register f

SUBLW Syntax: Operands: Operation: Description:

Subtract W from literal [ label ] SUBLW k 0 k 255 W) k - (W)

RRF f,d

f 127 [0,1]

See description below

Status Affected: C, DC, Z The W register is subtracted (2s complement method) from the eight-bit literal k. The result is placed in the W register. C=0 C=1 DC = 0 DC = 1 W W k k k<3:0> k<3:0>

W<3:0> W<3:0>

DS41291F-page 238

2009 Microchip Technology Inc.

SUBWF Syntax: Operands: Operation: Description:

Subtract W from f [ label ] SUBWF f,d 0 d f 127 [0,1] destination)

XORWF Syntax: Operands: Operation: Status Affected: Description:

Exclusive OR W with f [ label ] XORWF 0 d Z Exclusive OR the contents of the W register with register f. If d is 0, the result is stored in the W register. If d is 1, the result is stored back in register f. f 127 [0,1] destination) f,d

(f) - (W)

(W) .XOR. (f)

Status Affected: C, DC, Z Subtract (2s complement method) W register from register f. If d is 0, the result is stored in the W register. If d is 1, the result is stored back in register f. C=0 C=1 DC = 0 DC = 1 W W f f f<3:0> f<3:0>

W<3:0> W<3:0>

SWAPF Syntax: Operands: Operation: Status Affected: Description:

Swap Nibbles in f [ label ] SWAPF f,d 0 d f 127 [0,1] (destination<7:4>), (destination<3:0>)

(f<3:0>) (f<7:4>) None

The upper and lower nibbles of register f are exchanged. If d is 0, the result is placed in the W register. If d is 1, the result is placed in register f.

XORLW Syntax: Operands: Operation: Status Affected: Description:

Exclusive OR literal with W [ label ] XORLW k 0 Z The contents of the W register are XORed with the eight-bit literal k. The result is placed in the W register. k 255 W) (W) .XOR. k

2009 Microchip Technology Inc.

DS41291F-page 239

Вам также может понравиться