You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been trying our VSCode to create some simple programs. When I hit CMD+ SHIFT + B and RETURN to run the program in the emulator, it loads the emulator and if I an using an 'autoexec' file I get a syntax error:
Ok
RUN "autoexec
Ok
"hello.aqx"
Syntax error
If I disable the 'autoexec' file then I get this:
Ok
run"hello.aqx"
Hello World!
Ok
Looks like the 'run' is being cut off when the 'autoexec' is executed.
The text was updated successfully, but these errors were encountered:
The problem here is that plusBASIC clears the input buffer. So you need to delay your command input until plusBASIC is done processing. If you have an autoexec this will take longer. You can adjust your Makefile to add additional \x1D (delay 500ms) before your RUN command.
As of v0.23o, if you have SET BREAK OFF as the first statement of your autoexec file, then adding three spaces before the RUN command in your Makefile should fix the issue,
I've been trying our VSCode to create some simple programs. When I hit CMD+ SHIFT + B and RETURN to run the program in the emulator, it loads the emulator and if I an using an 'autoexec' file I get a syntax error:
Ok
RUN "autoexec
Ok
"hello.aqx"
Syntax error
If I disable the 'autoexec' file then I get this:
Ok
run"hello.aqx"
Hello World!
Ok
Looks like the 'run' is being cut off when the 'autoexec' is executed.
The text was updated successfully, but these errors were encountered: