-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MAME debugger feature requests #7034
Comments
It actually does through the optional fifth argument I added a while ago. |
For dump's help text (in most recent released build 222) it says the following:
The rest of the text doesn't mention rowSize, so I took a look at the MAME source. I see it now. Excellent :) if I substitute 9 for "CPU" parameter and "0" afterwards (which I see is new CPU param position?) then it dumps 9 bytes per line. Good work! I figure help text should now be: Is that correct? |
Well, besides the help for the dump command apparently being out-of-sync with the actual argument syntax, it’s addressed. |
Actually, looking at the code, I’m not sure you can control bytes-per-line with |
I'd like to see the feature to copy text too. It would be very useful to be able to select text from the output window and copy it for analysis in other tools. |
You can already do that: right--click and choose "copy visible" from the context menu. |
All of these have been addressed. You can right-click views and copy the visible content, which includes console history. |
Hi,
I have some more feature requests that would make reverse engineering old games a bit quicker.
Would it be possible to implement the following features:
I know there is an undocumented CONDUMP command (I looked @ the MAME source) but this would be faster.
With my reverse engineering work, I discover code is actually data and vice versa. It would be good if, instead of me using the dasm command all the time to create a file I copy and paste from, I could just copy and paste the text verbatim from the MAME disassembly window. It would literally save me hours!
Say I used CTRL+O and CTRL+P to size the memory window to 8 bytes per line. When I copy and paste from it, the text pasted will contain the address of each line and 8 bytes as hex, e.g. copying 2 rows of 8 bytes per row from memory address 1234 would result in:
1234: 01 02 03 04 05 06 07 08
123C: 09 0A 0B 0C 0D 0E 0F 10
The DUMP command doesn't let me specify bytes per line and its tedious having to format the output manually.
If anyone could look at these requests, that would be fantastic. I'd be a very happy man! Thanks very much in advance.
Scott
The text was updated successfully, but these errors were encountered: