Added debug adapter support for write memory. --------- Co-authored-by: Santhosh Kumar Ellendula <sellendu@hu-sellendu-hyd.qualcomm.com> Co-authored-by: Santhosh Kumar Ellendula <sellendu@hu-sellendu-lv.qualcomm.com>
9 lines
176 B
C++
9 lines
176 B
C++
int main() {
|
|
int not_a_ptr = 666;
|
|
const char *rawptr = "dead";
|
|
// Immutable variable, .rodata region.
|
|
static const int nonWritable = 100;
|
|
// Breakpoint
|
|
return 0;
|
|
}
|