
The STM8 is an
8-bit
In computer architecture, 8-bit integers or other data units are those that are 8 bits wide (1 octet). Also, 8-bit central processing unit (CPU) and arithmetic logic unit (ALU) architectures are those that are based on registers or data buses of ...
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 programma ...
family by
STMicroelectronics
STMicroelectronics N.V. commonly referred as ST or STMicro is a Dutch multinational corporation and technology company of French-Italian origin headquartered in Plan-les-Ouates near Geneva, Switzerland and listed on the French stock market. ST ...
. The STM8 microcontrollers use an extended variant of the
ST7 microcontroller architecture. STM8 microcontrollers are particularly low cost for a full-featured 8-bit microcontroller.
Architecture
The STM8 is very similar to the earlier ST7, but is better suited as a target for
C due to its 16-bit index registers and
stack pointer
In computer science, a call stack is a stack data structure that stores information about the active subroutines of a computer program. This kind of stack is also known as an execution stack, program stack, control stack, run-time stack, or mach ...
-relative addressing mode. Although internally 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.
...
it has "memory bridge" that creates a unified 24-bit address space, allowing code to execute out of RAM (useful for
in-system programming
In-system programming (ISP), or also called in-circuit serial programming (ICSP), is the ability of some programmable logic devices, microcontrollers, and other embedded devices to be programmed while installed in a complete system, rather th ...
of the
flash ROM
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 use t ...
), and data (such as
lookup table
In computer science, a lookup table (LUT) is an array that replaces runtime computation with a simpler array indexing operation. The process is termed as "direct addressing" and LUTs differ from hash tables in a way that, to retrieve a value v w ...
s) to be accessed out of ROM. On access the "memory bridge" stalls the CPU if required so that RAM-like write access to the flash ROM is possible. Code execution from the EEPROM is denied and creates a reset event. Random access to data above 64K is limited to special "load far" instructions; most operations' memory operands can access at most 128K (a 16-bit base address plus 16-bit offset).
Depending on the device type, the amount of RAM is in the range of 1 to 6 KiB, and the amount of ROM is 4 to 8 KiB (Low density), 16 to 32 KiB (Medium density), or 32 to 96 KiB (High density).
It has the same six registers (A, X, Y, SP, PC, CC) as the ST7, but the
index registers X and Y have been expanded to 16 bits, and 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 ...
has been expanded to 24 bits. The
accumulator A and the stack pointer remain 8 and 16 bits, respectively.
The
condition code register
A status register, flag register, or condition code register (CCR) is a collection of status flag bits for a processor. Examples of such registers include FLAGS register in the x86 architecture, flags in the program status word (PSW) register in ...
has two more defined bits, for a total of seven. There is an
overflow flag, and a second interrupt enable bit, allowing four
interrupt priority levels.
Subfamilies
* STM8AF automobile
* STM8AL automobile low-power
* STM8L low-power
* STM8S general purpose
* STM8T touch-sensing
* STLUX lighting control
* STNRG
Pulse-width modulation
Pulse-width modulation (PWM), or pulse-duration modulation (PDM), is a method of reducing the average power delivered by an electrical signal, by effectively chopping it up into discrete parts. The average value of voltage (and current) fed ...
-controllers
Compiler support
The STM8 is supported by the free
Small Device C Compiler, the free of charge closed source Cosmic C compiler, and the non-free
IAR IAR may refer to:
* IAR Systems, an embedded system technology company
*The Institute of Asian Research, an institute under the Faculty of Arts in the University of British Columbia, Vancouver, BC, Canada
*" Ignore all rules", a policy on Wikipedia ...
C and Raisonance compilers. Besides C there is the open-source STM8 eForth,
an interactive Forth system for the STM8.
Changes compared to ST7
The STM8 instruction set is mostly a superset of the ST7's, but it is not completely binary compatible.
Operations on the X and Y registers are extended to 16 bits. Thus, loads and stores access two bytes of memory rather than one. (Also, the
half-carry flag has been changed to reflect the carry from bit 7 to bit 8 of the 16-bit result, rather than the carry from bit 3 to 4.)
Interrupts push nine bytes of state instead of five as on the ST7.
The multiply instruction stores the 16-bit product in the specified index register (e.g. X), rather than dividing it between X and A.
Indirect addressing modes which fetch an 8-bit address from memory (opcodes
92 2x
,
92 3x
,
92 Bx
,
92 6x
,
92 Ex
,
91 6x
, and
91 Ex
) have been deleted; all indirect addressing modes fetch 16-bit addresses. A new prefix byte
72
has been added, and used to encode indirect starting with a 16-bit address.
The bit manipulation instructions have been changed to take a 16-bit address and to require the
72
prefix byte. The unprefixed opcodes
0x
and
1x
they formerly occupied are instead used for stack-pointer relative addressing.
Some rarely used branch instructions have had their opcodes changed to require a
90
prefix, and the unprefixed opcodes reassigned to signed branches which depend on the V flag.
Load and compare instructions targeting the X register are of little use on the ST7 with addressing modes indexed by the X register. On the STM8, when such operations specify a memory operand indexed by the X register, the register operand is changed to Y. With a
90
prefix, the registers are reversed so the index register is Y and the operand register is X.
One major performance difference is that the STM8 fetches 32 bits from ROM per cycle, and many instructions take one cycle to execute. Depending in the instruction length and the number of cycles needed execution from RAM is somewhat slower. The ST7, in contrast, fetches 8 bits per cycle and takes one cycle per instruction byte.
Instruction set
STM8 instructions consist of an optional prefix byte (
7216
,
9016
,
9116
, or
9216
), an opcode byte, and a few (up to four, but rarely more than two) bytes of operands. Prefix bytes mostly modify the addressing mode used to specify the memory operand, but in some cases, prefixes
72
and
90
perform a different operation entirely.
Prefix
90
exchanges X and Y in the following instruction. In the table below, these variants are combined on one line by writing "X/Y", which means either "X" or "Y". Prefix
90
is also used in two places to introduce new opcodes: the BCPL and BCCM instructions, and some branch conditions.
Prefix
92
converts instructions with an offset operand (''addr16'',X) to indirect addressing (
'addr8''X). The offset is replaced by the 8-bit address of a 16-bit offset value in memory. It is used only for this function.
Prefix
91
has both of the preceding effects, converting (''addr16'',X) addressing modes to (
'addr8''Y).
Prefix
72
is used in a number of places, in a much less regular pattern. In some cases, it introduces new addressing modes (particularly an (
'addr16''X) 16-bit indirect mode), but it also introduces many completely new operations.
For CPW and LDW instructions where the operand addressing mode is indexed by X, the STM8 uses the Y register by default instead of X. Applying a
90
prefix exchanges X and Y so the register is X and the addressing mode is indexed by Y.
References
{{Reflist
External links
Manufacturer's website on STM8Comparison of C compilers for STM8eForth for STM8Hackaday articles related to STM8Hackaday projects using STM8
Microcontrollers