Search found 414 matches

by waskol
Wed Sep 12, 2018 3:36 pm
Forum: Cross development tools
Topic: Taptap v2018 : bug fixes, improvements
Replies: 10
Views: 12024

Re: Taptap v2018 : bug fixes, improvements

No, it is not a good solution since Paramstr method strips ALL the double-quotes !!! - for this, you have to addapt : CL.Count is equivalent to Paramcount+1 (checkparams_ren in 'taptap.lpr') And in CLNametoBytes (Unitutils.pas), you have to... insert : s1.QuotedChar:=''''; before : s1.Delimiter:='+'...
by waskol
Wed Sep 12, 2018 2:52 pm
Forum: Cross development tools
Topic: Taptap v2018 : bug fixes, improvements
Replies: 10
Views: 12024

Re: Taptap v2018 : bug fixes, improvements

OK, while working on a lazarus version, I found a bug (taptap was not checking the parameters as it should for the ren command, I provide the correction in the first post, and also a Lazarus version of the code. I don't know how I will compile it for Linux since there is a windows specific call in t...
by waskol
Wed Sep 12, 2018 11:34 am
Forum: Cross development tools
Topic: Taptap v2018 : bug fixes, improvements
Replies: 10
Views: 12024

Re: Taptap v2018 : bug fixes, improvements

Hello iss, I can try to convert my files in order to be Lazarus compatible :) Of course it could be a good Idea to convert this to lua (or even yabasic , whose basic dialect is familiar to a lot of Oric enthousiasts, and wich runs on Linux too). I already thought about lua in fact, because I would l...
by waskol
Wed Sep 12, 2018 12:14 am
Forum: Cross development tools
Topic: Taptap v2018 : bug fixes, improvements
Replies: 10
Views: 12024

Taptap v2018 : bug fixes, improvements

Hi, Working with OSDK, I noticed that taptap was buggy. I need it to work for an oric project I am working on. I had lost the source (a hdd accident), but I found them back on the forum : the listing that I provided was, hum... Well, I was very tired or completly drunk, I don't know. I then rewrote ...
by waskol
Sat Sep 08, 2018 9:49 pm
Forum: Mags and books
Topic: Downloadable old magazines
Replies: 14
Views: 22163

Re: Downloadable old magazines

Thank you iss
by waskol
Sat Sep 08, 2018 12:33 am
Forum: Mags and books
Topic: Mistakes in books: l'Oric à Nu
Replies: 17
Views: 40293

Re: Mistakes in books: l'Oric à Nu

If you are still looking for it in pdf, please have a look here :
viewtopic.php?f=26&t=325&p=18026#p18026

:wink:
by waskol
Fri Sep 07, 2018 11:18 pm
Forum: Tape and floppy disk converters
Topic: Tap2Exe?
Replies: 49
Views: 74502

Re: Tap2Exe?

In 2007 I participated to a programming contest (with my pseudo "Ladywasky"), and I did a remake of Cobra (The snake from Norsoft). I was not a challenger, just a free participant since I was in the organisation. It was developped from scratch in Delphi. It has two modes : the original vin...
by waskol
Fri Sep 07, 2018 10:33 pm
Forum: Emulators
Topic: Oricutron for android (POC)
Replies: 37
Views: 60010

Re: Oricutron for android (POC)

For myself, I cannot transfer any files to the emulator directory : root access is required because the directories are located in a where user can't have access rights (Lollipop, Wiko Fever).
by waskol
Fri Sep 07, 2018 7:55 pm
Forum: Emulators
Topic: Oricutron 1.0 (EDIT: Now 1.2)
Replies: 214
Views: 221086

Re: Oricutron 1.0 (EDIT: Now 1.2)

I am afraid, it is not the only bug, but it seems related to the Oric rom itself. It concerns the two other bytes, those located just to the right of those highlited by iss on his screenshot. iss bytes represent the memory address of the array in the BASIC stack at the moment they were saved. Those ...
by waskol
Sun Sep 02, 2018 6:04 pm
Forum: C programming
Topic: why ? why not... but why ?
Replies: 2
Views: 7712

Re: why ? why not... but why ?

Thank you sir ! I can confirm you that if I comment the #define rand() in lib.h, it works as expected, and I gain about 400 bytes of data. What is surprising, is that the value of n is just good right after the call to rnd() in my snippet. and you can put 1 or 2 more printf(" n : %d ",n); ...
by waskol
Sun Sep 02, 2018 3:41 pm
Forum: C programming
Topic: why ? why not... but why ?
Replies: 2
Views: 7712

why ? why not... but why ?

If I compile this simple test program in OSDK : #include <lib.h> char rnd(char max); int i,st; char n=0; char stat[4]={0,0,0,0}; void main() { for(i=0;i<10;i++) { n=rnd(3); printf(" n : %d ",n); stat[n]=stat[n]+1; printf(" n : %d ",n); printf(" stat[n] : %d\n",stat[n]);...
by waskol
Thu Aug 30, 2018 11:29 am
Forum: C programming
Topic: some missing functions in OSDK
Replies: 6
Views: 9746

Re: some missing functions in OSDK

ok, here are the explanations (in french, from Debug) : - Ce ne sont pas des routines assembleur, en gros c'est le code du compilateur C après compilation, donc ca rame, et ca prend de la place. - Elles sont redondantes, pas besoin d'avoir quatre versions de PLOT dont le code est a 90% identique (ca...
by waskol
Wed Aug 29, 2018 10:05 pm
Forum: C programming
Topic: Compiling OK, Build fail, where is the problem ???
Replies: 2
Views: 7299

Compiling OK, Build fail, where is the problem ???

I rewrote oric kong into C The basic program was an horrible thing, the resulting C code is kind of hugly too (but without POP, goto outside a sub procedure, etc...). Anyway, this is the output when I build the thing : Building the program ORICKONG at adress $800 Compiling main.C - preprocess - comp...
by waskol
Wed Aug 29, 2018 9:36 pm
Forum: C programming
Topic: some missing functions in OSDK
Replies: 6
Views: 9746

Re: some missing functions in OSDK

Forget it, debug explained me why it was sooooo stupid.
and i understood how it was possible to sort all of that out without those extra dumb things ! :oops: