Search found 4460 matches

by Dbug
Fri Dec 12, 2014 7:56 pm
Forum: General Discussion
Topic: System updates
Replies: 3
Views: 5461

System updates

I will be proceeding to server and software updates during the week-end, so do not be surprised if the server is not answering now and then.

Thanks :)
by Dbug
Thu Dec 11, 2014 10:16 am
Forum: Cross development tools
Topic: New tools in the OSDK
Replies: 17
Views: 34257

Re: New tools in the OSDK

By the way, I reduced the size of the player source code, from 658 to 400 bytes.

Not that it matters a lot considering the size requirement for the buffers and music data, but that makes it leaner and slightly faster decompressing.
by Dbug
Sat Dec 06, 2014 12:55 pm
Forum: Cross development tools
Topic: New tools in the OSDK
Replies: 17
Views: 34257

Re: New tools in the OSDK

So, I made a new version of the MYM converter, that now supports the interleave mode. I will try to publish a new version of the OSDK later, but meanwhile you can find the version 1.5 of the converter attach to this message. ym2mym.zip Also, I modified my small demo test project to play the music. g...
by Dbug
Thu Dec 04, 2014 1:28 pm
Forum: General Discussion
Topic: Regarding spam bots...
Replies: 5
Views: 7296

Re: Regarding spam bots...

I never claimed that I believed in Democracy and Freedom and Speech :)
by Dbug
Thu Dec 04, 2014 8:42 am
Forum: General Discussion
Topic: Regarding spam bots...
Replies: 5
Views: 7296

Re: Regarding spam bots...

That's ok :) Basically my approach on the issue is to go "it never happened", so I ban the original poster of the message (which generally has only one post), and then I delete the message, and whatever message was posted after that that refers to the original spam message. Last month I ha...
by Dbug
Wed Dec 03, 2014 8:34 pm
Forum: General Discussion
Topic: Regarding spam bots...
Replies: 5
Views: 7296

Regarding spam bots...

When you see a spam bot message, please do not answer anything and just use the spam reporting feature (as some of you are already doing).

Thanks :)
by Dbug
Tue Dec 02, 2014 9:25 pm
Forum: Cross development tools
Topic: New tools in the OSDK
Replies: 17
Views: 34257

Re: New tools in the OSDK

I'm going to take a look. The original code did not handle that many formats in first place, I already had to extend it a couple of time for the selection of musics had in my slideshow. I guess the relevant part of the documentation is: 16 4 DWORD Song attributes (see below) (...) Data block content...
by Dbug
Sat Nov 22, 2014 5:39 pm
Forum: Emulators
Topic: Euphoric's latest build
Replies: 24
Views: 45237

Re: Euphoric's latest build

Cool, thanks for the update :)
by Dbug
Thu Nov 20, 2014 7:29 pm
Forum: General Discussion
Topic: Cumulus Preorder Thread
Replies: 272
Views: 426924

Re: Cumulus Preorder Thread

Important message, please read. A significant number of Cumulus units have been produced by Boris/Metadata and sent to the people who ordered them. I've not gotten any recent update on who received theirs, and I have not got any answers to my messages sent to Boris. At this point I do not know if h...
by Dbug
Thu Nov 20, 2014 7:20 pm
Forum: Demos
Topic: "OriCA", 256 byte intro
Replies: 7
Views: 18808

"OriCA", 256 byte intro

g0nlinish released a 256 byte intro for the Oric Atmos :)

http://www.pouet.net/prod.php?which=64389
by Dbug
Sun Nov 16, 2014 11:05 pm
Forum: Emulators
Topic: Oricutron: Fullscreen mode update
Replies: 2
Views: 9479

Re: Oricutron: Fullscreen mode update

Cool :)
by Dbug
Sun Nov 16, 2014 11:51 am
Forum: Cross development tools
Topic: OSDK - missing definitions in macros.h
Replies: 8
Views: 13783

Re: OSDK - missing definitions in macros.h

I guess, if these two "instructions" are generated only in the case of illegal/undefined conditions, we could just implement them as error messages from the assembler.
But ideally, we would like the compiler to do it, so we get the correct line number in the source file.
by Dbug
Sat Nov 15, 2014 4:35 pm
Forum: Mags and books
Topic: "L'assembleur de L'oric 1 et Atmos" now available
Replies: 1
Views: 15489

"L'assembleur de L'oric 1 et Atmos" now available

Thanks to Ephy who scanned the book, you can now download the PDF version of "L'assembleur de L'oric 1 et Atmos", it's in French of course :) http://www.defence-force.org/computing/oric/library/lib_coding_6502/index.htm The book is not fabulously incredible, but it is very progressive and ...
by Dbug
Sat Nov 15, 2014 11:29 am
Forum: Emulators
Topic: Oricutron: Fullscreen mode update
Replies: 2
Views: 9479

Oricutron: Fullscreen mode update

Hello,
I created a new ticket for Oricutron: https://code.google.com/p/oriculator/is ... tail?id=72, related to the way the fullscreen mode is displayed.

Feel free to add comments if you have your own idea on how that should be implemented for the various platforms :)
by Dbug
Fri Nov 14, 2014 11:14 pm
Forum: Cross development tools
Topic: OSDK - missing definitions in macros.h
Replies: 8
Views: 13783

Re: OSDK - missing definitions in macros.h

Try your second example without the define, just using "1" instead of "A": static int B; static int C; void main(void) { int x; B =(1 << (1 - 2)); C =(1 >> (1 - 2)); x = 1 + B + C; printf("x=%d", x); } That one should fail as well. The problem is just the expressions &q...