Discussion:
Screen capture debugger data page
(too old to reply)
A2CPM
2021-08-08 01:09:47 UTC
Permalink
Hi!

Possible? How?

Willi
fadden
2021-08-08 04:56:26 UTC
Permalink
Hi!
Possible? How?
Willi
Maybe!

What?
A2CPM
2021-08-08 05:51:32 UTC
Permalink
Hi!
Post by fadden
Maybe!
What?
Oh, well. It seems that, even if I had a '.BMP.' file from a capture of a debugger screen, I wouldn't be able to convert it to a '.TXT' file. Just tried converting a couple of test '.BMP' files using browser conversion sites. No joy...

Willi
Michael AppleWin Debugger Dev
2021-08-08 13:08:14 UTC
Permalink
Possible? How?
Willi
Hi Willi,

Yes, this is possible to capture DATA mode as text.

Press Ctrl+PrintScreen.

Unfortunately, I don't see this documented in the help. I've created GH #976 to address this oversight.

Michael
A2CPM
2021-08-09 17:49:28 UTC
Permalink
Post by Michael AppleWin Debugger Dev
Press Ctrl+PrintScreen.
Unfortunately, I don't see this documented in the help. I've created GH #976 to address this oversight.
Not working for me in 1_28_0_6.

Willi
Michael AppleWin Debugger Dev
2021-08-09 18:07:06 UTC
Permalink
Post by A2CPM
Post by Michael AppleWin Debugger Dev
Press Ctrl+PrintScreen.
Not working for me in 1_28_0_6.
Hey Willi

Hmmm, I've tried Ctrl-PrintScreen with versions:

* 1.28.0.0
* 1.28.6.0
* 1.29.16.0

and they all worked.

Are you running multiple instances of AppleWin? If so, Ctrl+PrintScreen will only work with the first instance (unless you use the command line options: -no-printscreen-key)

Can you download a more recent version and give a that a go please? You can find all releases here:
* https://github.com/AppleWin/AppleWin/releases

Thanks,
m.
Michael AppleWin Debugger Dev
2021-08-09 18:32:43 UTC
Permalink
P.S.

Here is the workflow I use to copy data out of debugger: (Replace $F800 with your address.)

1. MD1 F800
2. DATA
3. Ctrl-PrintScreen
4. Alt-TAB to your text editor
5. Ctrl-V

Alternatively, you could just bsave memory and use your favorite hexdump utility:

1. PWD
2. BSAVE "f800.f8ff.bin",f800:f800+FF
3. Alt-TAB to the command line
4. hexdump f800.f8ff.bin

e.g. If you use cygwin64:
\cygwin64\bin\hexdump.exe f800.f8ff.bin

e.g. If you use Python:
pip install hexdump
python -m hexdump f800.f8ff.bin

etc.

m.

Loading...