Search found 102 matches

by spotlessmind1975
Thu Aug 01, 2024 8:43 pm
Forum: Support
Topic: Memory Map on D32 and D64
Replies: 1
Views: 29721

Re: Memory Map on D32 and D64

Hi clovepower ! :) Just double checking if the area from 1024 to 2047 is free to be used as video memory on the Dragon target. As far as I can tell, the compiled program should use memory from address &H2800 (10240 decimal). So that range should not be touched by the program. I suspect that, for...
by spotlessmind1975
Sat Jul 27, 2024 12:01 pm
Forum: Support
Topic: Question about math and data types
Replies: 8
Views: 63121

Re: Question about math and data types

Hi clovepower ! Indeed I asked because I knew it must have been easy, like everything in the IDE . :D I will post it as an issue in GitHub, which I think is easier for you to track. Yep, it's been tracked and fixed. But at the moment only for TRS-80 Color Computer 1/2/3 (as a hotfix). For the rest o...
by spotlessmind1975
Thu Jul 25, 2024 8:20 pm
Forum: Support
Topic: Question about math and data types
Replies: 8
Views: 63121

Re: Question about math and data types

Hi clovepower ! I do am amazed to see you already implemented this . :mrgreen: Only one thing...how do I access beta?. It is easy! :D Click on Build , then on Options . In the dialog click on Use BETA compiler . Then click on SAVE . From this moment on, the buttons to download the beta will be activ...
by spotlessmind1975
Wed Jul 24, 2024 11:27 pm
Forum: Support
Topic: Question about math and data types
Replies: 8
Views: 63121

Re: Question about math and data types

Hi clovepower ! the type of a single-operand expression (like a+b) is the "widest" between the operand types and operands are converted to the wider type, if necessary, before performing the calculation I'm happy to let you know that I just implemented this mechanism on the beta . If you t...
by spotlessmind1975
Wed Jul 24, 2024 6:35 pm
Forum: Support
Topic: Question about math and data types
Replies: 8
Views: 63121

Re: Question about math and data types

Hi clovepower ! ahhhhhh, OK, my bad then, It's not like it was exactly a "mistake". In my opinion that is a question of interpretation. Some BASICs, if I remember correctly, allow you to define multiple variables with the same type. But, again in my opinion, it's not a very "BASIC&quo...
by spotlessmind1975
Wed Jul 24, 2024 9:02 am
Forum: Support
Topic: Question about math and data types
Replies: 8
Views: 63121

Re: Question about math and data types

Hi clovepower , and thank you for the message! :D 1. If a variable is explicitly declared to be of a given type, it is created to be of that type, regardless how it is initialized. You are definitely right! This is not only right, but it is precisely the behavior of ugBASIC . In the example you kind...
by spotlessmind1975
Tue Jul 16, 2024 7:44 am
Forum: New features
Topic: Double Buffer for Dragon Target
Replies: 4
Views: 53198

Re: Double Buffer for Dragon Target

Hi clovepower ! Is there a way to either implement the double buffer on this platform or at least to specify the size for the screen memory / start address of ugBASIC program? To specify the screen size and starting address you can use the direct access approach, with the caveat that this modificati...
by spotlessmind1975
Sun Jul 14, 2024 9:27 pm
Forum: New features
Topic: Double Buffer for Dragon Target
Replies: 4
Views: 53198

Re: Double Buffer for Dragon Target

Hi clovepower ! Is there a way to either implement the double buffer on this platform or at least to specify the size for the screen memory / start address of ugBASIC program? I'm happy to let you know that the pragma for defining the starting address of an ugBASIC program has been implemented in to...
by spotlessmind1975
Thu Jul 11, 2024 3:44 pm
Forum: Support
Topic: FOR...NEXT with negative STEP semantic
Replies: 5
Views: 40910

Re: FOR...NEXT with negative STEP semantic

Hi clovepower ! Unfortunately, I think the fix introduced another issue For that matter I fear he has introduced more than one. But I think that, in the end, this is a good thing: because it allowed me to see that there was one basic thing that wasn't right. :) In order to better explain the complex...
by spotlessmind1975
Wed Jul 10, 2024 7:30 pm
Forum: Support
Topic: FOR...NEXT with negative STEP semantic
Replies: 5
Views: 40910

Re: FOR...NEXT with negative STEP semantic

Hi clovepower ! Is this a bug or intended behavior? This is a bug without any doubt. And I also know how it was introduced. Before I tell you that I have already fixed it and you can download the compilers' COLDFIX, I would like to explain how it was born. Let me start by saying that being the only ...