I am currently working on a practice script. One of the function of the script is to print the values of a set of structure values into a file using the "winprint.v.v" command. The corresponding part of the script includes the following commands:
WinPrint.v.v %m.1 %r.2 %Hex val1
WinPrint.v.v %m.1 %r.2 %Hex val2
WinPrint.v.v %m.1 %r.2 %Hex val3
WinPrint.v.v %m.1 %r.2 %Hex val4
WinPrint.v.v %m.1 %r.2 %Hex val5
WinPrint.v.v %m.1 %r.2 %Hex val6
WinPrint.v.v %m.1 %r.2 %Hex val7
When I execute the script, only the first 2-3 commands of above code are executed before encountering an error. I am aware that in T32, the current command is executed even if the preceding command has not fully executed.
I tried to put some wait statements in between each of the commands. but it didn't work. I would greatly appreciate any assistance in resolving this error.