Search found 4464 matches

by Dbug
Sat Sep 28, 2013 2:10 pm
Forum: Games
Topic: A new game..
Replies: 9
Views: 16071

Re: A new game..

Nice :)

For the digit, well it's not that difficult, the biggest issue to the quality/size factor.
by Dbug
Mon Sep 23, 2013 8:29 pm
Forum: Mags and books
Topic: Old CEO-MAG magazines archive?
Replies: 5
Views: 14578

Re: Old CEO-MAG magazines archive?

I believe the CEO has some CD archives with issues in PDF and with the associated DSK files.
You should contact the CEO :)
by Dbug
Mon Sep 23, 2013 5:56 pm
Forum: Games
Topic: GALAXY WARS.
Replies: 4
Views: 9445

Re: GALAXY WARS.

I added a news on the Facebook page about both his games: https://www.facebook.com/OricBirthday/p ... 8148260415
by Dbug
Thu Sep 19, 2013 8:52 pm
Forum: General Discussion
Topic: Oric ULAs on eBay?
Replies: 7
Views: 10495

Re: Oric ULAs on eBay?

HCS 10017 indeed seems like Oric ULAs.
by Dbug
Sat Sep 14, 2013 4:41 pm
Forum: General Discussion
Topic: BASIC Week on reddit ..
Replies: 7
Views: 10473

Re: BASIC Week on reddit ..

If somebody feels putting that on reddit, just go ahead, apparently one needs to take a photo of a real Oric showing that.
I don't have the time or the patience to do it :)

You got the code, it works, it's slow as crap :D
by Dbug
Sat Sep 14, 2013 1:54 pm
Forum: General Discussion
Topic: BASIC Week on reddit ..
Replies: 7
Views: 10473

Re: BASIC Week on reddit ..

Here is the code: 100 ' Setup graphics and initialize some constants 105 ' ORIC VERSION by Mickael Pointier (dbug@defence-force.org) 110 HIRES 130 SW = 240 131 SH = 200 132 SC = SW / 1750 133 XF = SW / 2 140 IF SH / 1000 < SC THEN SC = SH / 1000 150 ' Read the vector graphics from DATA and draw the ...
by Dbug
Sat Sep 14, 2013 1:44 pm
Forum: General Discussion
Topic: BASIC Week on reddit ..
Replies: 7
Views: 10473

Re: BASIC Week on reddit ..

I got the code to run, need to clean it a bit because it's pretty miserably crappy, and probably need to open a reddit account because I do not have one.

Edit: BASIC week is from September 9 to September 13.

:p
by Dbug
Sat Sep 14, 2013 12:40 pm
Forum: General Discussion
Topic: BASIC Week on reddit ..
Replies: 7
Views: 10473

Re: BASIC Week on reddit ..

That looks like a pretty 'basic' program :)
by Dbug
Fri Sep 13, 2013 3:58 pm
Forum: Technical questions
Topic: Telestrat repair
Replies: 1
Views: 5737

Re: Telestrat repair

People at the CEO fixed mine, possibly you could contact them for some hints.
by Dbug
Thu Sep 12, 2013 8:05 pm
Forum: Hardware hacks and extensions
Topic: Faulty Microdisc because of the board? Almost no problem :)
Replies: 11
Views: 20966

Re: Faulty Microdisc because of the board? Almost no problem

I was completely wrong then... I never saw a Microdisc, but I somewhat thought that there was a cable that connected to the Oric regulator. Mystery solved (or inexistent) :) Well, everybody is right and wrong :) On some machines this works, on some it does not. My Oric 1 accepts it, my Atmos and my...
by Dbug
Fri Aug 23, 2013 9:45 pm
Forum: Hardware hacks and extensions
Topic: Oric keyboard plugged to PC
Replies: 1
Views: 6718

Re: Oric keyboard plugged to PC

Funny :)
by Dbug
Sat Aug 10, 2013 4:53 pm
Forum: Hardware hacks and extensions
Topic: Hadware ignorant question - Jasmin / Microdisc
Replies: 8
Views: 12297

Re: Hadware ignorant question - Jasmin / Microdisc

Ok thanks. So anyone willing to have Jasmin and Microdisc drives in a single PC case will have to install both controllers, and up to 8 floppy drives ;-) I guess technically it would probably be possible to make a system where the same 4 drives are connected to both disk controllers with some kind ...
by Dbug
Sat Aug 10, 2013 2:56 pm
Forum: Hardware hacks and extensions
Topic: Hadware ignorant question - Jasmin / Microdisc
Replies: 8
Views: 12297

Re: Hadware ignorant question - Jasmin / Microdisc

They have different versions of the disk controller chip, they also use different registers for the interface I believe. The bottom line is, it would be possible to abstract that very easily in software, so a Sedoric that runs on Jasmin is doable with some patching, but the low level code that acces...
by Dbug
Thu Aug 08, 2013 8:24 pm
Forum: General Discussion
Topic: Welcome to forum.defence-force.org 2.0
Replies: 29
Views: 32021

Re: Welcome to forum.defence-force.org 2.0

Yicker wrote:Any further update on getting this forum enabled for Tapatalk?
Nope, because I totally forgot about it.
by Dbug
Mon Jul 29, 2013 9:29 pm
Forum: 6502 assembly coding
Topic: A little help for a simple machine code program.
Replies: 5
Views: 13954

Re: A little help for a simple machine code program.

If you are fine with overshooting a bit (ie: also do the replacement in the three lines of TEXT as well), you could indeed optimize by using both Y and a single 8 bit counter: 32 times 256=8192, so you could just set the address to $A000, and increment Y then increment the high byte each time Y reac...