Fix for SDCDB clear breakpoint by filename:line
SDCDB clear breakpoint by filename:line not working
Parsing debug information fix for ticket 3529
Partial fix for ticket 3529
To reproduce this bug build the example source file shown below and run in sdcdb using: sdcc --debug bug3529.c sdcdb -cpu 8051 bug3529 -z -b Using sdcc 3.6.0 b[reak] main and b[reak] load_all work as expected. Using sdcc 4.2.0 and the current SVN head they cause the debugger to exit with an illegal memory access. This occurs on Windows 10 and Debian Bullseye. Save the code below as bug3529.c struct all { char buff[20]; } volatile testall; void load_all() { int x; for(x = 0; x < 10; x++) testall.buff[x]...
SDCC .cdb debug file format change
A small clarification: the attached source was built with SDCC 3.6.0 so that all versions of SDCDB could debug it.
SDCDB simulator communication timeout