
STM8 Debugger
17
©1989-2019 Lauterbach GmbH
Memory Classes
The following memory access classes are available:
To access a memory class, write the class in front of the address. For example, use D to access the data
memory
The memory class P is used to denote the Flash memory.
Since the STM8 architecture uses a Unified Memory Architecture, the following two examples return the
same results.
Access Class
Description
D
Data
P
Program
Data.dump D:0x00
Data.dump P:0x00
Data.dump D:0x100
Data.dump P:0x100