1) I would very much like the option output the monitor output to file (general request)
Eg. d 1000 2000 >>file.txt
2) Also, in combination with breakpoints, I would like to see the option to execute a command (same as VICE function COMMAND does)
3) I would like an list of commands in a file to be this COMMAND reference.
So lets say I want to log all references to a filename when the program loads;
Set break point triggered when calling ffd5
The command that is executed at the triggering of the ffd5 break would be "m bb bc >>log.txt : m b7 >>log.txt" : x" (memory of the filename pointers, memory of filename length and then x from monitor and run the program again.
This way you can just play around with the program at will and it will build a log file for all the times where the logging criteria at met.
1) Actually this works almost as you wrote: D 1000 2000 file.txt
Other points are interesting. I plan to add support to Vice monitor anyway that might fix this for you.
If that is the format, how does it tell if I want to append or create a new
file? (In standardio that is done using > vs >>)
/Pontus "Bacchus" Berg
FairLight concil...
Den tors 10 okt. 2019 kl 21:14 skrev slajerek slajerek@users.sourceforge.net:
Related
Tickets: #37
It is just creating a new file, good point about > vs >>