Search found 4460 matches

by Dbug
Tue May 27, 2014 8:55 pm
Forum: General Discussion
Topic: Cumulus Preorder Thread
Replies: 272
Views: 426858

Re: Cumulus Preorder Thread

robione wrote:Hello

I'm interested in bying a cumulus too.
What is the procedure / price ?

regards
Everything is indicated on the first message of the first page of this thread :)
by Dbug
Sun May 11, 2014 10:14 pm
Forum: BASIC programming
Topic: fichier TAP créé par osk qui bloque
Replies: 27
Views: 40777

Re: fichier TAP créé par osk qui bloque

The 55 is just what the memory is initialized with, the famous UUUUUUUUUUUUUUUUUUUUU when the data are corrupted. I wish the ROM designed had chose START + LENGHT instead of this retarded END + START, would have made things so much easier. Quiz: What are the values of START and END for a zero byte l...
by Dbug
Sun May 11, 2014 10:07 pm
Forum: Cross development tools
Topic: Problem with tap2dsk
Replies: 21
Views: 29281

Re: Problem with tap2dsk

I use Visualstudio as well and my modifications compiled with it. Maybe it's a problem with different versions of it. I think I have the 2013 version. Sorry for the problem. I'm still on VS2012, and indeed VS2013 has added some C99 conformity fixes. I can't unfortunately switched to 2013 because I'...
by Dbug
Sun May 11, 2014 11:21 am
Forum: Cross development tools
Topic: Problem with tap2dsk
Replies: 21
Views: 29281

Re: Problem with tap2dsk

FYI I am currently working on new versions of - Wavclean - Wav2tap - Wav2taps (slow version) - Tap2wav Fabrice knows - but I think he doesn't have time to really follow this. As I don't have any knowledge in standardization of C programming, when it's done (in a few weeks / months?), I'll check wit...
by Dbug
Sun May 11, 2014 10:10 am
Forum: Cross development tools
Topic: Problem with tap2dsk
Replies: 21
Views: 29281

Re: Problem with tap2dsk

Hello, hello. People, we need to be careful with the changes we are doing. Right now, Jylam is doing changes to port the OSDK to Linux, and Hialmar has made some changes to Tap2Dsk, and in both cases the code stopped compiling in VisualStudio so I had to spend some time fixing it. So we need some ru...
by Dbug
Sat May 10, 2014 6:50 am
Forum: C programming
Topic: A new well-known compiler
Replies: 51
Views: 60635

Re: A new well-known compiler

You wrote CC65, so I guess you are not testing the gcc 6502? Do you think you could get CC65 to output an assembler source code and attach it as well to your post? This 9 KB vs 14 KB size different is indeed interesting, looks like CC65 has improved since when we were checking with Jede (more than 1...
by Dbug
Fri May 09, 2014 10:59 pm
Forum: C programming
Topic: A new well-known compiler
Replies: 51
Views: 60635

Re: A new well-known compiler

For now I don't have any impressions of this new compiler, but I'm really curious to run some checks. Would be interesting to write a small test: - Use the internal timer to get some accurate values, and then use it to time some routines, both with the old compiler and the new one - Measure the siz...
by Dbug
Fri May 09, 2014 8:32 pm
Forum: C programming
Topic: Equivalent of the NEW basic command ?
Replies: 50
Views: 85745

Re: Equivalent of the NEW basic command ?

Chema wrote:Why don't they start at $00, btw?
That was the value they (Fabrice, Vangelis, Alexios) chose in the original C SDK :)
by Dbug
Fri May 09, 2014 6:26 pm
Forum: C programming
Topic: Equivalent of the NEW basic command ?
Replies: 50
Views: 85745

Re: Equivalent of the NEW basic command ?

Hmm, I guess a worthy addition to XA could be to have an automatic support for 'system safe' zero page allocation.
Could be an optional mode where instead of saying "start at $50" it would automatically allocate in a list of known "safe" areas?
by Dbug
Thu May 08, 2014 10:09 pm
Forum: C programming
Topic: Equivalent of the NEW basic command ?
Replies: 50
Views: 85745

Re: Equivalent of the NEW basic command ?

In fact, after several trial and error I have located my problem. I use the line8.s line drawing routine (found on miniserve) and it is something there that breaks the switch to basic program. If I replace the DrawLine8 call by a curset and a draw it works. It's sad because the DrawLine8 calls were...
by Dbug
Thu May 08, 2014 9:08 pm
Forum: C programming
Topic: Equivalent of the NEW basic command ?
Replies: 50
Views: 85745

Re: Equivalent of the NEW basic command ?

I have some problems when switching from my C program to a Basic program. I think my C program is messing with the place where the Basic stores variables and arrays. I'd like to restore those pointers before switching to the Basic program. Something you could try first, is to see that the BASIC pro...
by Dbug
Thu May 08, 2014 9:06 pm
Forum: General Discussion
Topic: Cumulus Issues
Replies: 358
Views: 323758

Re: Cumulus Issues

The Cumulus can browse and read directories and files from the SD card OK. If I put a DSK file into A: and then use the menu to reset the oric I just get a message flashing at the top of the screen saying: "No operating system on disc". Have tried several DSK files but all the same. This ...
by Dbug
Wed May 07, 2014 9:46 pm
Forum: Cross development tools
Topic: Problem with tap2dsk
Replies: 21
Views: 29281

Re: Problem with tap2dsk

Why are we not using his last version of the tool ? The version in the OSDK is the one that was released from Fabrice's old site, since I don't use it I never updated it. That's as simple as that. Now, there are two possibilities: - I stop using the version I have on SVN and get the version from So...
by Dbug
Wed May 07, 2014 8:14 pm
Forum: General Discussion
Topic: Cumulus Preorder Thread
Replies: 272
Views: 426858

Re: Cumulus Preorder Thread

JamesD wrote:I was contacted but I put off my order to see if some of the problems could be resolved first.
Should I move your order back to the bottom of the page so you get recontacted?
I'm trying to keep the list clear for everybody to know where they are :)
by Dbug
Sun May 04, 2014 11:12 am
Forum: C programming
Topic: Basic <-> C data exchanges
Replies: 6
Views: 14556

Re: Basic <-> C data exchanges

Therefore we need to exchange some data from program to program. It contains basically the position and orientation in the labyrinth (3 bytes) and the characters data (about 400 bytes). Ok, that does not sound bad :) Currently Basic programs do the following: - position and orientation are kept at ...