ZXStudio doesn't support +3/+2a etc in the included emulator. Requires at least Beta 6 of ZXBasicStudio
Use Project/Configure Project to configure.
Example Compiler Parameters
-O 0 -S 32768 -H 4768 -f tap -B -a
(The bold was auto generated, underscore are the options added "-f tap" to create a tap file, "-B -a" required to Generate the basic file and auto start.
Example Launch External Emulator
C:\zx\projects\DOSTesting\ZXStartFuse.bat
This has to be a batch file, rather than direct to the emulator, %1 and %2 are passed into the batch file for ZXBasicStudio - %1 is the path, and %2 the filename excluding the extension.
ZXStartFuse.bat created in the OS, and renamed.
This would open a plus3 spectrum in fuse and run the tap file.
(Thanks to support from telegram for getting this to work ..)
Use Project/Configure Project to configure.
Example Compiler Parameters
-O 0 -S 32768 -H 4768 -f tap -B -a
(The bold was auto generated, underscore are the options added "-f tap" to create a tap file, "-B -a" required to Generate the basic file and auto start.
Example Launch External Emulator
C:\zx\projects\DOSTesting\ZXStartFuse.bat
This has to be a batch file, rather than direct to the emulator, %1 and %2 are passed into the batch file for ZXBasicStudio - %1 is the path, and %2 the filename excluding the extension.
ZXStartFuse.bat created in the OS, and renamed.
Code:
ECHO OFF
"C:\Program Files (x86)\Fuse\fuse.exe" -m plus3 --auto-load %1%2.tap
This would open a plus3 spectrum in fuse and run the tap file.
(Thanks to support from telegram for getting this to work ..)