| Posted: 03:00am 22 Aug 2020 |
Copy link to clipboard |
 Print this post |
|
If I run the program below it slowly draws on the screen as I expect, but if I run from the command line: CLS:MODE 1,8,0,test:pause 5000
it doesn't seem to call the interrupt. This is maybe for the best but I didn't see it in the manual yet.
x=50 y=200 SUB test x=x+1/10 pixel int(x) mod 300,y END SUB
CLS:MODE 1,8,0,test:pause 5000
|