Hi,
I need "just data" debug commands inside openmsx console. I mean, once the console is alive inside openmsx, you can write many, MANY commands to the console parser...
Many of these commands give you info in low level format, for example "reg a" is really concise, "peek 0x40f0" is also concise... just one byte of data (of course, surrounded with the unavoidable XML overhead/noise). But they're useful nonetheless...
But then we have to deal with "block" commands, like "showmem", "cpuregs" they also return what they promise (some ram dump, some cpu registers dump), but adding some presentation additional layer on top of it, ( proper format), etc...
After spending some time looking for some commands browsing the console/debugger command list, I haven't discovered what I'm looking for, so, my question is:
Are there any block commands (for the openmsx console/debugger) that return data in a more "raw" fashion than "showmem" or "cpuregs"? Of coufse, I could build up a memory block (for example) making MANY Peek calls to the debugger, but that should be a last resort solution, as it would imply a lot of XML NOISE overhead. I'd like to receive just hex raw data separated by commas, with no beautified info... Is it possible?
Greetings and thanks.