Search found 100 matches

by spotlessmind1975
Thu Apr 17, 2025 8:33 pm
Forum: Support
Topic: LET?
Replies: 2
Views: 9719

Re: LET?

Hi zartan917 ! Hi Im following a zx basic tutorial with this code: I would like to point out that the ugBASIC language is not fully compatible with ZX Basic, due to specific features of the latter, which sometimes deviate from standard BASIC. I.e., PRINT AT is not standard. Therefore, it is necessar...
by spotlessmind1975
Fri Apr 11, 2025 6:13 am
Forum: Support
Topic: unexpected
Replies: 9
Views: 20913

Re: unexpected

Hi zartan917 ! hi thank you. I pasted code now getting unexected OP_GT whatever that is. Sorry, my mistake! Or rather, a copy and paste error. Actually, you should write <> to indicate different, and not < > (i.e. with a space in between). The OP_GT keyword stands for Greater Than OPerator , i.e. th...
by spotlessmind1975
Thu Apr 10, 2025 6:43 pm
Forum: Support
Topic: unexpected
Replies: 9
Views: 20913

Re: unexpected

Hi zartan917 , and welcome! :D but syntax error, unexpected K, expecting end of file. What can I do to fix?? In ugBASIC , variables must start with a lowercase letter. Variables whose names start with an uppercase letter cannot be used. Also, if you want to use IF...ENDIF on multiple lines, you must...
by spotlessmind1975
Sat Mar 29, 2025 7:34 pm
Forum: Support
Topic: Help making a basic game for CoCo 2
Replies: 9
Views: 98877

Re: Help making a basic game for CoCo 2

Hi Giovani_Gualdi!
Giovani_Gualdi wrote: Tue Mar 25, 2025 9:26 pm Here's another part of the space saga
A truly remarkable work, congratulations! :D
by spotlessmind1975
Sat Mar 29, 2025 12:08 am
Forum: Support
Topic: new here. some questions
Replies: 4
Views: 33154

Re: new here. some questions

Hi zartan917 ! First of all thank you so much for the support and the link! When i downloaded ugbasic did it download emulators too? i find i have to set the path to the emulators, are they included or i have to get each one. Emulators are downloaded separately, and are not part of the IDE or ugBASI...
by spotlessmind1975
Fri Mar 28, 2025 10:07 pm
Forum: Support
Topic: new here. some questions
Replies: 4
Views: 33154

Re: new here. some questions

Hi zartan917 , and welcome! :D First of all, thank you so much for the message! im following the tutorials but when i add an image it just shows the name of the image not actual picture. The result you got seems to be the one you get by writing something like: PRINT image where image is the name of ...
by spotlessmind1975
Wed Mar 26, 2025 8:32 pm
Forum: Support
Topic: Description of bit type a bit unclear
Replies: 1
Views: 8755

Re: Description of bit type a bit unclear

Hi Hrundy and welcome! :D it seems to me that the second line is somewhat wrong in the comment. I would think that this stands for "y and 223" (239 is 255-16, not -32)? I think you are right about the comment, but not on the value, that seems not exact. Infact, the HAS NOT BIT instruction ...
by spotlessmind1975
Thu Mar 06, 2025 8:16 am
Forum: Support
Topic: Help making a basic game for CoCo 2
Replies: 9
Views: 98877

Re: Help making a basic game for CoCo 2

Hi Giovani_Gualdi , and welcome! However, I'd like to smooth out the horizontal movement to be more like the vertical movement, it's so smooth. Is there any way to get around this? First of all thank you very much for the code , really interesting! Reading the code, I see that you use the PUT IMAGE ...
by spotlessmind1975
Sat Mar 01, 2025 8:42 pm
Forum: New features
Topic: Storage access: files or memory?
Replies: 10
Views: 317694

Re: Storage access: files or memory?

Hi ldir_hector , no problem, actually happy to read you! I tried this DLOAD source with a png file of 16*16 pixels only containing red. If the image contains only red pixels, ugBASIC will consider red as the background color, and therefore will set the background color of the entire screen as such.I...
by spotlessmind1975
Thu Feb 20, 2025 10:33 pm
Forum: New features
Topic: Storage access: files or memory?
Replies: 10
Views: 317694

Re: Storage access: files or memory?

Hi ldir_hector!
ldir_hector wrote: Mon Oct 14, 2024 9:23 pm I hope you'll find a way to deal with storage access.
I think you'll find an interesting example about storage access.

Take a look here and here.