HOME

TheInfoList



OR:

The PIC
instruction set In computer science, an instruction set architecture (ISA), also called computer architecture, is an abstract model of a computer. A device that executes instructions described by that ISA, such as a central processing unit (CPU), is called an ' ...
refers to the set of instructions that Microchip Technology PIC or dsPIC
microcontroller A microcontroller (MCU for ''microcontroller unit'', often also MC, UC, or μC) is a small computer on a single VLSI integrated circuit (IC) chip. A microcontroller contains one or more CPUs (processor cores) along with memory and programmable i ...
supports. The instructions are usually programmed into the
Flash memory Flash memory is an electronic non-volatile computer memory storage medium that can be electrically erased and reprogrammed. The two main types of flash memory, NOR flash and NAND flash, are named for the NOR and NAND logic gates. Both us ...
of the processor, and automatically executed by the microcontroller on startup. PICmicro chips have a
Harvard architecture The Harvard architecture is a computer architecture with separate storage and signal pathways for instructions and data. It contrasts with the von Neumann architecture, where program instructions and data share the same memory and pathways. ...
and instruction words have unusual sizes. Originally, 12-bit instructions included 5 address bits to specify the memory operand, and 9-bit branch destinations. Later revisions added opcode bits, allowing additional address bits. In the instruction set tables that follow, register numbers are referred to as "f", while constants are referred to as "k". Bit numbers (0–7) are selected by "b". The "d" bit selects the destination: 0 indicates W, while 1 indicates that the result is written back to source register f. The C and Z status flags may be set based on the result; otherwise they are unmodified. Add and subtract (but not rotate) instructions that set C also set the DC (digit carry) flag, the carry from bit 3 to bit 4, which is useful for BCD arithmetic.


Architecture

Memory operands are also referred to as "registers". Most are simply general-purpose storage (RAM), while some locations are reserved for ''special function registers''. Except for a single accumulator (called W), almost all other registers are memory-mapped, even registers like the
program counter The program counter (PC), commonly called the instruction pointer (IP) in Intel x86 and Itanium microprocessors, and sometimes called the instruction address register (IAR), the instruction counter, or just part of the instruction sequencer, is ...
and ALU status register. (The other exceptions, which are not memory-mapped, are the return address stack, and the tri-state registers used to configure the
GPIO A general-purpose input/output (GPIO) is an uncommitted digital signal pin on an integrated circuit or electronic circuit (e.g. MCUs/ MPUs ) board which may be used as an input or output, or both, and is controllable by software. GPIOs have no ...
pins.) The instruction set does not contain conditional branch instructions. Instead, it contains conditional skip instructions which cause the following instruction to be ignored. A conditional skip followed by an unconditional branch performs a conditional branch. The skip instructions test any bit of any register. The ALU status register is one possibility. Memory operands are specified by absolute address; the location is fixed at
compile time In computer science, compile time (or compile-time) describes the time window during which a computer program is compiled. The term is used as an adjective to describe concepts related to the context of program compilation, as opposed to concept ...
. To provide indirect addressing, a pair of special function registers are provided: * The ''file select register'' (FSR) is written with the address of the desired memory operand, after which * The ''indirect file'' register (INDF) becomes an
alias Alias may refer to: * Pseudonym * Pen name * Nickname Arts and entertainment Film and television * ''Alias'' (2013 film), a 2013 Canadian documentary film * ''Alias'' (TV series), an American action thriller series 2001–2006 * ''Alias the ...
for the operand pointed to by the FSR. This mechanism also allows up to 256 bytes of memory to be addressed, even when the instruction set only allows 5- or 7-bit memory operands. Models with more registers (special function registers plus RAM) than fit into the instruction provide multiple banks of memory, and use one of two mechanisms for accessing them: # Most baseline core devices, and some mid-range core devices, use the high-order bits of the file select register to select the current register bank. # More recent models have a separate ''bank select register'', and a MOVLB instruction to set it. PIC processors with more than 256 words of program use paged memory. The internal program counter and return stack are as wide as necessary to address all memory, but only the low 8 bits are visible to software in the PCL ("PC low") register. There is an additional PCLATH ("PC latch high") register which is only modified by software. Any operation which does not specify the full destination address (such as a 9-bit GOTO or an 8-bit write to the PC register) fills in the additional high bits from the corresponding part of PCLATH. (Some PIC18 processors extend this beyond 16 bits with a PCLATU register to supply bits 16–23.)


Baseline core devices (12 bit)

*: Extended instruction, not available on most 12-bit PICs. Of the models with extended RAM, most (e.g. 16C5x, 16F5x) extend the register address space using the high-order bits of the FSR. A few (e.g. PIC12F529T39A) have a separate bank select register which can be set with this instruction.
†: Extended instruction, only available on "enhanced baseline" PICs. Only the very few models (16F527, 16F570, MCV20A) with interrupt support (and a 4-level stack) include these instructions. All such models also include MOVLB.


ELAN Microelectronics clones (13 bit)

ELAN Microelectronics Corp. make a series of PICmicro-like microcontrollers with a 13-bit instruction word. The instructions are mostly compatible with the mid-range 14-bit instruction set, but limited to a 6-bit register address (16 special-purpose registers and 48 bytes of RAM) and a 10-bit (1024 word) program space. The 10-bit program counter is accessible as R2. Reads access only the low bits, and writes clear the high bits. An exception is the TBL instruction, which modifies the low byte while preserving bits 8 and 9. The 7 accumulator-immediate instructions are renumbered relative to the 14-bit PICmicro, to fit into 3 opcode bits rather than 4, but they are all there, as well as an additional software interrupt instruction. There are a few additional miscellaneous instructions, and there are some changes to the terminology (the PICmicro OPTION register is called the CONTrol register; the PICmicro TRIS registers 1–3 are called I/O control registers 5–7), but the equivalents are obvious. *: Same opcode as 12-bit PIC
†: Instruction unique to EM78 instruction set with no PIC equivalent Some models support multiple ROM or RAM banks, in a manner similar to other PIC microcontrollers. There is also a 15-bit variant of the instruction set, which is almost identical except that the register numbers are enlarged to 8 bits and the call and jump addresses are enlarged to 12 bits. Other differences: * The CONTW, IOW, CONTR, IOR and INT instructions are deleted, * Operations with an 8-bit literal have two 0 bits added as bits 8 and 9, * Extensions with a 4-bit literal have two 0 bits added as bits 4 and 5, and * The PAGE and BANK instructions are renamed SBANK and GBANK and perform bank switching on special function registers and general-purpose RAM, respectively. A second generation 15-bit instruction set includes several additional instructions: *: Same opcode as 13-bit EM78
†: Only on EM89F768N; operands and results in special registers
‡: Only on EM88F794N, MTF213 and MTF351


Mid-range core devices (14 bit)

These devices feature a 14-bit wide code memory, and an improved 8 level deep call stack. The instruction set differs very little from the baseline devices, but the 2 additional opcode bits allow 128 registers and 2048 words of code to be directly addressed. There are a few additional miscellaneous instructions, and two additional 8-bit literal instructions, add and subtract. The mid-range core is available in the majority of devices labeled PIC12 and PIC16.


Enhanced mid-range core devices (14 bit)

Enhanced mid-range core devices introduce a deeper hardware stack, additional reset methods, 14 additional instructions and
C programming language ''The C Programming Language'' (sometimes termed ''K&R'', after its authors' initials) is a computer programming book written by Brian Kernighan and Dennis Ritchie, the latter of whom originally designed and implemented the language, as well as ...
optimizations. In particular. there are two INDF registers (INDF0 and INDF1), and two corresponding FSR register pairs (FSR''n''L and FSR''n''H). Special instructions use FSR''n'' registers like address registers, with a variety of addressing modes.


Holtek clones (14 or 16 bit)

Holtek Holtek Semiconductor () is a Taiwan-based semiconductor design centre and provider with its headquarters and design operations based in the Hsinchu Science Park in Taiwan, and has sales offices located in USA and India. Holtek's design focus is i ...
make numerous 8-bit microcontrollers with a 14-bit instruction word equivalent to the (non-enhanced) mid-range core. The instruction encodings all fit into 14 bits and provide 7-bit operand addresses, but models with 4K or 8K words of program ROM provide 15- or 16-bit wide ROM and extend the basic 11-bit destination address using bits 14–15 of the instruction as bits 11–12 of the address. Some models extend the 7-bit RAM addresses by using bit 14 of the instruction as bit 7 of the operand address. The instruction format is identical to Microchip's, but the opcodes are assigned in a different order, and the manufacturer uses different instruction mnemonics. The accumulator is called ACC rather than W, and the destination is specified by a suffix to the instruction mnemonic rather than an operand. In addition to the opcode assignment, there are semantic differences in a few instructions: * The subtract instructions subtract the operand from the accumulator, while Microchip's subtract instructions do the reverse. (This makes the subtract immediate instruction redundant, as it is equivalent to an add of the negative.) * The move-to-accumulator and clear instructions do not modify any flags. Several operations have been added to the 14-bit PICmicro repertoire: * Rotate one bit left and right ''without'' carry, * Set operand to all-ones, * Skip if operand is zero (without incrementing or decrementing it first), * Add and subtract with carry, * Decimal adjust after addition, for
binary-coded decimal In computing and electronic systems, binary-coded decimal (BCD) is a class of binary encodings of decimal numbers where each digit is represented by a fixed number of bits, usually four or eight. Sometimes, special bit patterns are used for ...
arithmetic, and * Read from program ROM, for table lookup. This uses TBHP and TBLP registers as a 16-bit pointer, fetches the word there, and stores the low byte in a specified location. The high 6–8 bits of the fetched word are stored in the TBLH register. A second form uses only TBLP and reads from the highest 256-byte page in ROM. * Most models support a second instruction to reset the watchdog timer, which must alternate with the first; repetitions of one instruction are ignored. This permits two independent watchdog routines to run, and failure of either will trigger the watchdog. * Holtek provide two indirect addressing registers, like the enhanced 14-bit PIC. Some models (e.g. HT66F70A) provide three.


Padauk microcontrollers (13, 14, 15 or 16 bit)

Padauk Technology ''Pterocarpus'' is a pantropical genus of trees in the family Fabaceae. It belongs to the subfamily Faboideae, and was recently assigned to the informal monophyletic ''Pterocarpus'' clade within the Dalbergieae. Most species of ''Pterocarpus ...
make a series of PIC-like microcontrollers notable for their extremely low cost, beginning at in quantity, with many models costing less than . Although clearly derived from the Microchip PIC12 series, there are some significant differences: * They do not use the FSR/INDF mechanism for performing indirect memory access, instead having indirect load and store instructions which use an arbitrary RAM location as a pointer; * they use a RAM-based call stack, with a stack pointer register; * the carry flag uses a "borrow bit" convention for subtracts, rather than the "carry bit" convention used by Microchip; * they also include a signed
overflow flag In computer processors, the overflow flag (sometimes called the V flag) is usually a single bit in a system status register used to indicate when an arithmetic overflow has occurred in an operation, indicating that the signed Two's complement, ...
, which like the digit carry, is set by add, subtract and compare instructions (every instruction which sets the carry flag ''except'' for shift instructions); * they have separate RAM and I/O register addresses spaces (64 and 32 bytes, respectively, in the 13-bit instruction set); * bit operations are limited to the I/O space and first 16 RAM addresses; * the single-operand instructions with a memory source and accumulator destination are omitted; * single-operand instructions with accumulator source and destination are provided; * subtraction operations compute destination − source, exchanging input operands depending on the destination; * they operate faster, requiring 1 cycle for most instructions and 2 cycles for control transfers; and * some models support
temporal multithreading Temporal multithreading is one of the two main forms of multithreading that can be implemented on computer processor hardware, the other being simultaneous multithreading. The distinguishing difference between the two forms is the maximum number ...
, having multiple execution contexts whose execution is interleaved. The 14-, 15- and 16-bit instruction sets primarily differ in having wider address fields, although some encoding changes are made to allow a few additional instructions (such as , which performs a compare and skip if ''not'' equal.)


PIC18 high end core devices (16 bit)

In 2000, Microchip introduced the PIC18 architectur

Unlike the 17 series, it has proven to be very popular, with a large number of device variants presently in manufacture. In contrast to earlier devices, which were more often than not programmed in assembly, C has become the predominant development language. The PIC18 has a 12-bit RAM address space, divided into 16 pages of 256 bytes. The 8-bit f field determines the address in combination with the a bit and the 4-bit bank select register (BSR). If a=0, the BSR is ignored and the f field is sign-extended to the range 0x000–0x07F (global RAM) or 0xF80–0xFFF (special function registers). If a=1, the f field is extended with the BSR to generate the 12-bit address. The PIC18 extends the FSR/INDF mechanism used in previous PICmicro processors for indirect addressing in two ways: First, it provides ''three'' file select registers. The FSR''n'' registers are 12 bits long (each split into two 8-bit portions FSR0L through FSR2H), and access to the corresponding INDF''n'' register (INDF0 through INDF2) acts as an alias for the addressed byte. Second, there are addressing modes. For each of the three, there is not just one INDF''n'' register, but five, and the one used determines the addressing mode: * INDF''n'': Access the byte at location FSR''n'' * POSTDEC''n'': Access the byte at FSR''n'', then decrement FSR''n'' * POSTINC''n'': Access the byte at FSR''n'', then increment FSR''n'' * PREINC''n'': Increment FSR''n'', then access the byte at the incremented FSR''n'' * PLUSW''n'': Access the byte at FSR''n'' + W (indexed addressing). There are also instructions to directly load an FSR pair with a 12-bit address, and a MOVFF instruction that moves a byte between two 12-bit addresses. *: These extended instructions are only available on some models, and then only if the XINST configuration bit is set.


PIC24 and dsPIC 16-bit microcontrollers

In 2001, Microchip introduced the dsPIC series of chips, which entered mass production in late 2004. They are Microchip's first inherently 16-bit microcontrollers. PIC24 devices are designed as general purpose microcontrollers. dsPIC devices include
digital signal processing Digital signal processing (DSP) is the use of digital processing, such as by computers or more specialized digital signal processors, to perform a wide variety of signal processing operations. The digital signals processed in this manner are ...
capabilities in addition. Instructions come in two main varieties. One is like the classic one-operand PIC instructions, with an operation between W0 and a value in a specified f register (i.e. the first 8K of RAM), and a destination select bit selecting which is updated with the result. The W registers are memory-mapped, so the f operand may specify a W register. The other form, new to the PIC24, specifies three W register operands, two of which allow a 3-bit addressing mode specification: The register offset addressing mode is only available for the MOV ''src'',''dst'' instruction, where the Ww register may be used as a register offset for the source, destination, or both. All other instructions use this encoding for an unsigned 5-bit immediate source instead. For the operands to TBLRD and TBLWT which access program memory, only the indirect modes are allowed, and refer to addresses in code memory. A few instructions are 2 words long. The second word is a NOP, which includes up to 16 bits of additional immediate operand.


References

{{Microchip Technology Microcontrollers Instruction set listings