• Screen capture debugger data page

    From A2CPM@21:1/5 to All on Sat Aug 7 18:09:47 2021
    Hi!

    Possible? How?

    Willi

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From fadden@21:1/5 to All on Sat Aug 7 21:56:26 2021
    On Saturday, August 7, 2021 at 6:09:48 PM UTC-7, A2CPM wrote:
    Hi!

    Possible? How?

    Willi

    Maybe!

    What?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From A2CPM@21:1/5 to fadden on Sat Aug 7 22:51:32 2021
    Hi!

    On Sunday, August 8, 2021 at 12:56:27 AM UTC-4, fadden wrote:
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Michael AppleWin Debugger Dev@21:1/5 to All on Sun Aug 8 06:08:14 2021
    On Saturday, August 7, 2021 at 6:09:48 PM UTC-7, A2CPM wrote:
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From A2CPM@21:1/5 to Michael AppleWin Debugger Dev on Mon Aug 9 10:49:28 2021
    On Sunday, August 8, 2021 at 9:08:15 AM UTC-4, Michael AppleWin Debugger Dev wrote:
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Michael AppleWin Debugger Dev@21:1/5 to All on Mon Aug 9 11:07:06 2021
    On Monday, August 9, 2021 at 10:49:28 AM UTC-7, A2CPM wrote:
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Michael AppleWin Debugger Dev@21:1/5 to All on Mon Aug 9 11:32:43 2021
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)