blob: 81711deeb8d2ef0b61ef9fde34dce178bc4e7a00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
tar ext :2331
monitor reset
set width 0
set height 0
set verbose off
set logging file mylog.txt
set logging overwrite on
set logging redirect on
set logging on
set remote hardware-breakpoint-limit 4
# gc log
break gc.c:103
commands
backtrace
p/x start_block
p/x length
append binary memory ram.bin &_srelocate &_estack
continue
end
break main.c:179
continue
delete
disconnect
quit
|