Hi everyone,
I am having a *huge* debugger ini file that I would like to split into several single files called by some kind of master *.ini file. So far the documentation does not deal with this issue. Is it possible? How could I do it?
Use the simulator's INCLUDE command inside your *.ini file.
I had been trying this for a long time but never understood why it did not work. Finally I discover a TAB right after the file name, this seems to cause the include to fail.
I removed the TAB and now it work :)
Finally I discover a TAB right after the file name when everything else fails (and I mean everything) I resort to retype :(
Erik
The simulator file (.ini) is simply a script read in via the command line of the simulator. It is restricted to 255 characters with NO line feed or line continuation as in C code. Each line must be terminated with a CR just as if you typed the code into the command line and then hit the enter button. So, your TAB defeated the CR that is required. Bradford