diff --git a/README.md b/README.md index 0e19ad6..37560c3 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,17 @@ Default settings can be adjusted in the VS Code settings of this extension. ### Memory Format Settings The Memory Format settings allow to configure how data that is read from the target system is interpreted and displayed. -Use the following to retarget the view to your needs and the inspected memory architecture: +Use the following to adjust the view to your needs and the inspected memory architecture: + +![Screenshot of the Memory Inspector](https://raw.githubusercontent.com/eclipse-cdt-cloud/vscode-memory-inspector/main/media/memory-inspector-options-screenshot.png) 1. **Bytes per MAU**: The number of *Bytes* that form the Minimum Addressable Unit. It commonly is a fixed number for a specific target hardware. Use for example a value of `1` for byte-addressable architectures. 2. **MAUs per Group**: The number of *MAUs* that form a *Group* considering the selected *Endianess*. Use for example a value of `2` to form a 4-byte value consisting of `2` 2-byte MAUs. 3. **Groups per Row**: Number of *Groups* to display in a row. This can be a fixed number of *Groups*. Or the value `Autofit` to let the Memory Inspector calculate the best utilization of space in the `Data` column. 4. **Group Endianess**: The order of *MAUs* within a *Group*. The value can be `Little Endian` or `Big Endian`. +![Screenshot of the Memory Inspector](https://raw.githubusercontent.com/eclipse-cdt-cloud/vscode-memory-inspector/main/media/memory-inspector-options-endian-screenshot.png) + The following terminology is used: - **Byte**: A data unit of 8 Bits. diff --git a/media/memory-inspector-options-endian-screenshot.png b/media/memory-inspector-options-endian-screenshot.png new file mode 100644 index 0000000..eadb60f Binary files /dev/null and b/media/memory-inspector-options-endian-screenshot.png differ diff --git a/media/memory-inspector-options-screenshot.png b/media/memory-inspector-options-screenshot.png new file mode 100644 index 0000000..c3973fe Binary files /dev/null and b/media/memory-inspector-options-screenshot.png differ