Search found 415 matches

by waskol
Tue Aug 07, 2007 11:20 pm
Forum: C programming
Topic: STOREd oric arrays and C
Replies: 4
Views: 16304

Thank you very much both of you. in order to enlight the things, I should precise (because I have forgotten) that : 1) the file array was created via the PUT command of the SEDORIC 2) since the array is bidimensionnal (36 cols, 48 rows) DIM T%(35,48) and since an integer itakes two byte , the hires ...
by waskol
Tue Aug 07, 2007 1:32 pm
Forum: C programming
Topic: STOREd oric arrays and C
Replies: 4
Views: 16304

STOREd oric arrays and C

Please, do you have an idea of how it would be possible to load an array in C (the one used in OSDK) previously created in BASIC and saved with the STORE command ?
Thank you very much
by waskol
Mon Aug 06, 2007 10:20 pm
Forum: General Discussion
Topic: New to Defence Force
Replies: 3
Views: 7345

Welcome ! I am 37 since the 31st of July, so I almost had your age when I got an Oric Atmos :wink: I joined the community only 2 monthes ago, and I can tell you that people around is very nice and helpfull :P Don't hesitate to surf here and around on the Oric Web ring, I am sure that, like I did, yo...
by waskol
Sat Aug 04, 2007 3:41 pm
Forum: AY sound chip
Topic: 2 eurocents question about AY-8912 possibilities
Replies: 23
Views: 34486

hmmm, it seems that someone did it for spectrum :wink:
http://www.zxdemo.org/extra/src/samplepack-20070527.zip

the zip file contains nice piece of source code in order ti realize a wav player for a zx-spectrum (and for an Oric maybe ?) :P
by waskol
Sat Aug 04, 2007 3:14 pm
Forum: AY sound chip
Topic: 2 eurocents question about AY-8912 possibilities
Replies: 23
Views: 34486

hmm, that is pretty interesting...
Therefore, I wonder if an Oric could play a wav file, or at least the raw data of a wav file...

I will try to see on the internet if I find something about how people realized it with an Atari ST :wink:
by waskol
Sat Aug 04, 2007 1:17 am
Forum: AY sound chip
Topic: 2 eurocents question about AY-8912 possibilities
Replies: 23
Views: 34486

2 eurocents question about AY-8912 possibilities

Do you think it would be technically possible to play the raw data of a wav file with a ay-8912 ???
Of course, I imagine that the main limitation is the sample rate frequency...

what do you think ?
by waskol
Thu Aug 02, 2007 8:15 pm
Forum: Technical questions
Topic: Oric RGB output to Amstrad CPC464 color monitor input
Replies: 9
Views: 15934

Thank you very much for this precision, I will test the output voltages in order to be sure that they are alike.
:P
by waskol
Thu Aug 02, 2007 8:08 pm
Forum: Tape and floppy disk converters
Topic: WAV files on an MP3 (or similar) player
Replies: 7
Views: 21134

I do that with the CPC464 I owe, i never triedit with my Oric though.
by waskol
Thu Aug 02, 2007 6:47 pm
Forum: Cross development tools
Topic: Bas2Tap problem
Replies: 3
Views: 9263

inline asm code ? that would be a great idea ! but I can't imagine the challenge... :lol: Otherelse, what you could add too, is to treat correctly the ? question mark when it is used for a PRINT command :wink: I was about to suggest you the "Label" mode, but I just read in your reply that ...
by waskol
Thu Aug 02, 2007 1:42 pm
Forum: Cross development tools
Topic: OSDK016 - Pictconv : problem with -f1 switch
Replies: 4
Views: 10348

I've downloaded your older PictConv, and this one seems working :P

It is the one that you can find here :
http://www.defence-force.org/computing/ ... /index.htm
by waskol
Thu Aug 02, 2007 12:04 pm
Forum: Cross development tools
Topic: Bas2Tap problem
Replies: 3
Views: 9263

Bas2Tap problem

You cannot convert a text file to a tap file when the first line is line 0.
:wink:

IF the numbering of your line start at line 1, it will work.

In othrer words, this does not "compile" :

Code: Select all

0 PRINT "HELLO !"
This is OK :

Code: Select all

1 PRINT "HELLO !"
by waskol
Wed Jul 25, 2007 12:39 pm
Forum: Cross development tools
Topic: OSDK 0.016
Replies: 6
Views: 16602

OK, no prob :P
by waskol
Wed Jul 25, 2007 12:38 pm
Forum: Cross development tools
Topic: OSDK016 - Pictconv : problem with -f1 switch
Replies: 4
Views: 10348

many thanks :P
by waskol
Wed Jul 25, 2007 12:31 pm
Forum: Cross development tools
Topic: New tool needed:Tap File splitter/concat & k7 questions
Replies: 4
Views: 11252

Thank you very much Symoon :wink: @DBUG The problem with lines of DATA in a program is that, you will fill the memory of the ORIC twice : once for the lines of DATA, once for the screen. therefore, I prefer to fill in the memory from a file of the the tape rather than from extra lines of code. :wink...
by waskol
Sat Jul 14, 2007 12:19 pm
Forum: Cross development tools
Topic: New tool needed:Tap File splitter/concat & k7 questions
Replies: 4
Views: 11252

New tool needed:Tap File splitter/concat & k7 questions

Yesterday, while using OSDK, I faced up a very little challenge. On one hand I had my welcome picture, alone on a tap file(colored via euphoric since pictconv failed with the -f1 switch, and then saved via Euphoric). Let's say I called it picture.tap On the other hand I had my Introduction program :...