Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add system memory view for debugger. Under the Variables->System->Memory entry, can click on the icon shown when hovering to get memory view using VS Code's native view. A bit clunky but I don't see a more direct way to get it.
Also adds the ability to create watches with addresses directly, by placing the address within brackets, instead of a label or symbol name e.g.
(&1900).w to get the 16 bit word stored at 0x1900, formatted as a decimal value
$($80) to get the byte stored at 0x80
String formatting can now also be applied with the .sXX suffix, where XX is the number of bytes to read e.g.
![Debug_memory_views](https://private-user-images.githubusercontent.com/4892984/363414654-dadd4cb4-b8d6-4ac3-85d5-f4ec1fd68ce1.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1NjY3MDcsIm5iZiI6MTczOTU2NjQwNywicGF0aCI6Ii80ODkyOTg0LzM2MzQxNDY1NC1kYWRkNGNiNC1iOGQ2LTRhYzMtODVkNS1mNGVjMWZkNjhjZTEucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxNCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTRUMjA1MzI3WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9OGEwZjAyZTIyNjBiYzIwOTI3OWEwYjM3NDFkOThiMTAzYWUwZjI3ZWE5MzcyZmVhOTNmNjhiYmI4NTNmMTg5ZiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.zchyfnxXQQDp9-M2ZEYj7d997uOIxGilmznIAGYCuKU)
somelabel.s8