Hi everybody, I recently startet looking into a 25 year old project I did with amos pro back then. Its basically a midi pattern editor that runs quite well on winuae. My plan is to run this on a raspi with touch screen to edit and play drum patterns and send them to a drum machine (everyone who used the built in pattern editor of a drum machine knows how they could drive you insane)
So I fixed some bugs and wanted to do a little more stuff but found the editor of amos a little annoying tu handle these days. So I dumped the project to ascii and started to implement a language definition file and function list plugin for notepad++ which I was quite satisfied with (if anyone is interested i'll be happy to share).
To make things short:
I want to compile the ascii code, so first I tokenized the code without any error. I can load the tokenized program into amos pro and run it without error.
I can even compile the program from the amos pro menu without any error and it runs fine.
Now here's the problem:
I want to compile the program from command line but the compiler gives me:
Syntax error at line 2830: a$=>>> left$(a$,xc-xpos-1)+mid$(a$,xc
I cannot see any syntax error in that line and as told before even amos pro editor does not.
Does anyone know what is causing this or a workaround? Or is there a list of compiler bugs and workarounds?
Thanks for your help!