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.
somelabel.s8
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. somelabel.s8