An openMSX TCL script to copy the contents of the current LISTing to your clipboard. Just dump this in your profile's openMSX/share/scripts directory and you can use the copy_ascii_listing_to_clipboard command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace eval listing_manipulation { | |
proc strip_memory_addresses {str} { | |
return [regsub -all -line {^[0-9a-f]x[0-9a-f]{4} > } $str ""] | |
} | |
proc copy_ascii_listing_to_clipboard {} { | |
set_clipboard_text [strip_memory_addresses [listing]] | |
} | |
namespace export copy_ascii_listing_to_clipboard | |
} | |
namespace import listing_manipulation::* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment