GDB is gnu’s very own debugger
b mainorb 72(set breakpoint onmainfunction or line72)r args(run with args)p thingnameorp 3+5(print a variable or return value)p/tprint as binaryp/xprint as hex
info(get args, locals)nscontinuenext, step, continue
int test;
short lsb = 0xff;
test |= lsb
printf("%d\n",lsb);
int test;
