Search found 414 matches

by waskol
Sat Nov 03, 2007 12:44 am
Forum: General Discussion
Topic: Do you want a PC Diskette controller + ampli-bus board ?
Replies: 33
Views: 48124

yeah !!!!!!! Let's design with all those brains our new Oric :P But coming back, to the disk controller, here are the files I have (PCB layouts, list of components, rom file, pictures... and sorry, it is all in french) : amplibus diskette controller step 1/3 diskette controller step 2/3 diskette con...
by waskol
Fri Nov 02, 2007 9:50 pm
Forum: General Discussion
Topic: Do you want a PC Diskette controller + ampli-bus board ?
Replies: 33
Views: 48124

Do you want a PC Diskette controller + ampli-bus board ?

Hello, In July 2002 was presented in the CEO Mag a "do it yourself" PC diskette controller, based on the microdisc, and in a Theoric was explained how to build an ampli-bus board. I have those materials since a long time and I don't know where I get them... Anyway, I have contacted various...
by waskol
Wed Oct 31, 2007 4:16 pm
Forum: General Discussion
Topic: Castellum secretum 2 : report about a fabulous day
Replies: 12
Views: 14705

OK, here is the first demo, but using the "rasters in text" technique (i.e. like our international Dbug :wink: ), with a text mode where pixel lines are alternatively red and green. It is very close from what I wanted, but I think that if I want a very nice and smooth effect, it goes beyon...
by waskol
Wed Oct 31, 2007 9:40 am
Forum: General Discussion
Topic: Castellum secretum 2 : report about a fabulous day
Replies: 12
Views: 14705

Very nice animation :) Thank you :oops: For the first one, you can probably achieve even better effects using some more patterns. After all you have 96 characters available :) Depending of the size of your animation, it's even probably doable in Hires :) That's what I have planed at the beginning, ...
by waskol
Tue Oct 30, 2007 10:32 am
Forum: General Discussion
Topic: Castellum secretum 2 : report about a fabulous day
Replies: 12
Views: 14705

Chema wrote:Glad to hear you had a nice time, and a good opportunity to make our little machine more popular :)

BTW The demo effect is very nice! However both links get to the same tap file, I think...

Cheers!
I changed the second link, thank you chema :P
by waskol
Tue Oct 30, 2007 12:05 am
Forum: General Discussion
Topic: Castellum secretum 2 : report about a fabulous day
Replies: 12
Views: 14705

Symoon wrote:Wow, very nice demo !
Well done.
Thank you very much !! But I feel so faaaaaaaaaaaaaaaaaaaaar away from what I have seen or from what can be done by DBug, Twilighte, yourself... :lol:
by waskol
Mon Oct 29, 2007 10:54 pm
Forum: General Discussion
Topic: Castellum secretum 2 : report about a fabulous day
Replies: 12
Views: 14705

Ho, it's not much, it is not synchronized att all with the VBL or with the VIA Timer. It is a dirty simple code in C (thanks DBUG for your wonderfull OSDK) There are some pictures of the meeting :wink: here : ftp.cpcscene.com (user: incoming / password : incoming ). and here : http://www.manifestati...
by waskol
Mon Oct 29, 2007 9:52 pm
Forum: General Discussion
Topic: I'm new here...
Replies: 3
Views: 6553

Dbug wrote:By the way, I invite everybody to add a picture in your profile, makes it easier to see if a message is from JamesD, Waskol, MmuMan, Gordon, Chema, ...
Done ! I've updated my avatar ! :wink:

Welcome to GSquad by the way !
by waskol
Mon Oct 29, 2007 9:28 pm
Forum: General Discussion
Topic: Castellum secretum 2 : report about a fabulous day
Replies: 12
Views: 14705

Castellum secretum 2 : report about a fabulous day

As you already know it, I went to a meeting called the "Castellum Secretum 2" in Segré (France, region of Maine-et-Loire) involving the Amstrad CPC Scene on the 27th, last Saturday I came with my Amstrad CPC464, my Amiga 2000 and , most important with my Oric Atmos :wink: I met some wonder...
by waskol
Fri Oct 26, 2007 8:29 am
Forum: Cross development tools
Topic: Bug found in LIB.H (OSDK all versions ?)
Replies: 4
Views: 10849

I was wondering if "address" was a C reserved word in the OSDK ?
by waskol
Thu Oct 25, 2007 9:40 pm
Forum: General Discussion
Topic: Invitation to Alchimie 7
Replies: 21
Views: 28141

mmu_man wrote: So until you can generate an irq from the via it won't go any further.
I think it is where it stucks :lol:
by waskol
Thu Oct 25, 2007 9:31 pm
Forum: General Discussion
Topic: Invitation to Alchimie 7
Replies: 21
Views: 28141

Code: Select all

[EDIT] waskol, this is surprising... However, if you can provide a "dump" of the ROM running in your emulator, it would be very helpful :)
I use exactly the same Atmos rom that the one provided with Euphoric : BASIC11B.ROM
[/code]
by waskol
Thu Oct 25, 2007 9:15 pm
Forum: General Discussion
Topic: Invitation to Alchimie 7
Replies: 21
Views: 28141

There is an issue that prevents the ROM to boot fully (to the Basic prompt), but I hope to sort it out soon ;) I seem to remember it is not possible to boot the Oric ROM without having a working VIA emulation. Something related to waiting for some timer somewhere. hum, I doubt the VIA emulation has...
by waskol
Thu Oct 25, 2007 3:41 pm
Forum: 6502 assembly coding
Topic: IRQ interupt
Replies: 23
Views: 45690

off couuuuuuuurrrrrrrrrrrssssssssseeeeeee !!! :lol: chema, now I understand so many things a bit better with your explanation. I was wondering if there was any callback event to manage and how to manage it in this case. You gave me the answer I needed to the question I was not able to ask. :wink: So...
by waskol
Thu Oct 25, 2007 1:11 pm
Forum: 6502 assembly coding
Topic: IRQ interupt
Replies: 23
Views: 45690

Then, the structure of my program should be basically like this :

Code: Select all

void main()
{
install_irq_handler
...
while (animate==1) {
  //Chain twice
  chain_irq_handler;
  chain_irq_handler;
  //Then display next frame
  Display_frame();
}
...

uninstall_irq_handler;
}
am I right ?