|
|
In the debugger, if you want to make changes, use "e" and "r" to modify mem or regs. Use "r f cy" to set the carry bit, e.g.
Use conditional breakpoints. The only trouble is, they're kind of slow -- trace is faster. e.g. bp myfun+23,"j (eax != 0) 'r';g"
Use ".dp [n]" to look at all or specific CPUs
Get symbols and use lm/lg/ls/wr/wa
|
|
|