comparison src/.gdbinit @ 57:2088fd998865

sbc09 directry clean up
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 23 Jul 2018 16:07:12 +0900
parents .gdbinit@bd2b07db8917
children
comparison
equal deleted inserted replaced
56:4fa2bdb0c457 57:2088fd998865
1 handle 2 pass
2 define regs
3 call (void)printf("rax=%08lx rbx=%08lx rcx=%08lx rdx=%08lx\nrsi=%08lx rdi=%08lx rbp=%08lx rsp=%08lx rip=%08lx\n",$rax,$rbx,$rcx,$rdx,$rsi,$rdi,$rbp,$rsp,$rip)
4 end
5 define si
6 stepi
7 regs
8 x/1i $rip
9 end
10 define ni
11 nexti
12 regs
13 x/1i $rip
14 end
15