Aren't all the commands just OPCodes, ie each command "name" is assigned a constant value at the beginning of the program, like:
A workaround would be to simply rename the SIN and COS to SINUS and COSINUS and assign the correct OPCode to that name instead, like:Code:SIN CON $47 COS CON $48Then you use SINUS and COSINUS in the Shiftout statment instead of SIN and COSCode:SINUS CON $47 COSINUS CON $48
Another workaround is to simply replace the the constants SIN and COS in the Shiftout statement with their respective OPCodes.
/Henrik.




Bookmarks