Re: [hatari-devel] Debugger question |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
Hi,
On 23.10.2021 19.43, Nicolas Pomarède wrote:
Le 23/10/2021 à 18:12, Roger Burrows a écrit :
I'm trying to debug an EmuTOS issue (as usual). I want to dump a big
range of
memory to a file for subsequent examination. I know I can do this by
redirecting ALL stderr output to a file when I start Hatari, but then
I can't
see what I'm doing. I guess I could dump it to the console then copy
that to a
file, but that seems very clunky to me (and also I might run out of
space if I
dumped e.g. 4MB). Is there any other way? I would like to be able to
switch
the output file from the debugger prompt, but that doesn't seem possible.
I see what you mean, even if in my case I usually dump everything to a
file by using ">" when starting hatari, you can do it later from the
debugger with the "o" (setopt) command :
o --trace-file /tmp/log
should redirect all stderr printfs to /tmp/log
using the "o" command, you can pass any (most ?) of the flags that you
can give as parameters when starting hatari.
There seems to be also:
--------------------------
> h logfile
'logfile' or 'f' - open or close log file
Usage: f [filename]
Open log file, no argument closes the log file. Output of
register & memory dumps and disassembly will be written to it.
--------------------------
I've never used it though.
- Eero