blob: 1c124de801ee91f583b6d4f29570a564a8662062 (
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
30
31
32
33
34
35
36
|
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:106
commands
p/x start_block
p/x length
p/x ticks_ms
# backtrace output redirect is currently broken in gdb so we use up instead.
# https://sourceware.org/bugzilla/show_bug.cgi?id=23439
# backtrace
up
up
up
up
# append binary memory ram.bin &_srelocate &_estack
continue
end
break main.c:251
continue
delete
disconnect
quit
|