10-05-2021, 06:58 PM
Yes, I was referring to DEF ADD.
It seems you wanted to copy memory from one place to another.
You could do it with:
Not sure if this would be fast enough, but compiling with -O3 or -O4 and measuring the speed will give you a hint.
DEF ADD cannot be used because variables are static, not dynamic in compiled BASIC and this var is not used at all.
But probably there's a workaround that can be admitted in the contest.
Also, please, please,
I'd like to add DEFCC compatibility in PRINT (not sure if you read my private msg?).
If you could tell me more about it (I couldn't find much info), I'll be gratetul.
It seems you wanted to copy memory from one place to another.
You could do it with:
Code:
FOR i = 1 to 128
POKE 16384 + i , PEEK 25000 + i
NEXT i
Not sure if this would be fast enough, but compiling with -O3 or -O4 and measuring the speed will give you a hint.
DEF ADD cannot be used because variables are static, not dynamic in compiled BASIC and this var is not used at all.
But probably there's a workaround that can be admitted in the contest.

Also, please, please,

If you could tell me more about it (I couldn't find much info), I'll be gratetul.