Hi John,
Post by John HayfordIs there anyway to have the isem read input from a file instead of
typing it all in?
I put all the user input in an easily-accessible text file with each
value to be input to the program on a separate line. For example:
0x1a
1
0x19
1
0xe
-3
[...continued...]
With that in a text file, I loaded the executable in ISEM, set a
breakpoint after the user input had been stored in memory (so that I
could start to debug the program after all the values were loaded) and
then ran the program. The program prompted for the first value, and I
copied all the lines from the text file and just pasted them all at once
into the ISEM emulator. No need to worry about what the ISEM emulator
prints to the screen -- as long as it gets all the input, that works.
This provided me with an easy way to get all the input in there quickly.
Hope this helps. Let me know if you have any questions.