Search found 4463 matches

by Dbug
Thu Jun 09, 2011 8:17 pm
Forum: General Discussion
Topic: An article including Oric
Replies: 5
Views: 8377

I had the same experience in France, its not only in UK :)
by Dbug
Sat Jun 04, 2011 4:20 pm
Forum: Hardware hacks and extensions
Topic: ATMOS REPAIR GUIDE
Replies: 3
Views: 7890

Very useful indeed.. Especially now there are so many eBay resellers claiming their stuff actually works!(until you read the very small print!!) Indeed, and that's not even considering the sellers that are offering counterfeited products. I've been victim of such a fraud, the product is an actual &...
by Dbug
Mon May 23, 2011 8:54 pm
Forum: General Discussion
Topic: Reminder: #oric channel on ircnet
Replies: 0
Views: 8303

Reminder: #oric channel on ircnet

Since we had new people recently, possibly it's time to remind: We have an IRC channel on the ircnet network. It's not super active, but you can often find one or two people idling around. If you want to know when people are present, you can check on the statistics page: http://miniserve.defence-for...
by Dbug
Mon May 23, 2011 8:51 pm
Forum: Mags and books
Topic: Mistakes in books: l'Oric à Nu
Replies: 17
Views: 40899

Deleting messages is easy, moving threads is not really something I wish to try considering how reliable the forum code is :)
by Dbug
Sat May 14, 2011 11:36 pm
Forum: Hardware hacks and extensions
Topic: HowTo: Multiplayer on-line gaming on oric!
Replies: 5
Views: 9842

Technically, there is already a TCP/IP implementation for the Oric, it was done by Fabrice Frances, called BIP (BASIC IP), he even had a telestrat connected on the internet at some point. (Check on http://oric.free.fr/emulator.html , the "gateway program"). There was also some talks about ...
by Dbug
Thu May 12, 2011 9:11 am
Forum: Emulators
Topic: Euphoric LCD display related question
Replies: 8
Views: 15007

I really depend of the processor/architecture, I installed DosBox on my 1ghz Android ARM laptop, and things like DOS games are running super smoothly.

Now yeah a 300mhz machine may struggle
by Dbug
Tue May 10, 2011 10:00 pm
Forum: Hardware hacks and extensions
Topic: Microdisc replacement project
Replies: 183
Views: 198806

About the confidentiality, do not forget that WebSVN is enabled, so anything you put on the SVN depot is visible from the web interface.
by Dbug
Sun May 08, 2011 1:13 pm
Forum: Operating systems, utilities and other serious software
Topic: An Oric "TOOLS.DSK" archive?
Replies: 11
Views: 23184

What you will need first, is a decent set of disk I/O routines, because there is no way you can have the loaded source file and the built data in memory at the same time as the assembler. This means you will have to do a multi-pass disk based assembler. That's of course doable, was done on older mac...
by Dbug
Sun May 08, 2011 11:42 am
Forum: Operating systems, utilities and other serious software
Topic: An Oric "TOOLS.DSK" archive?
Replies: 11
Views: 23184

Something which should be doable is to design a set of routines for doing fast display of graphics, double buffering, sprite, decompression of data, copies of memory bloc, shifting of bitmap, scrolling, etc... possibly the same for sound (native support for playing samples and sound effects), tape a...
by Dbug
Sat May 07, 2011 6:44 pm
Forum: General Discussion
Topic: Potential hardware for a "portable Oric"
Replies: 1
Views: 4681

Potential hardware for a "portable Oric"

Hi, I was reading slashdot, when I found a link on the Ben NanoNote, it's basically a (very) small machine with a 366mhz processor, had 32 megs of ram and a 320x240 screen, running linux natively. I'm not sure how well something like Oricutron would work on that, but for $99 it's hard to find a bett...
by Dbug
Fri May 06, 2011 8:19 pm
Forum: Operating systems, utilities and other serious software
Topic: An Oric "TOOLS.DSK" archive?
Replies: 11
Views: 23184

LUA is slow on powerful machines - except if you use the JIT compiler -, the reason is mostly the syntax that uses dictionaries and loose typing. Imo, you would get all the inconvenient of C (complex syntax) and of the BASIC (horrible runtime performance). You are better trying to design your own la...
by Dbug
Fri May 06, 2011 8:17 pm
Forum: Games
Topic: The Return of Viking Chess (Hnefatafl)
Replies: 268
Views: 317237

Yeah, about C vs ASM, on my tests I would say that in average when I convert code from C to ASM I get a speed-up of about 16 times (even more with code that uses a lot of intermediate variables and loops), and the size factor is roughly a third or a quarter of the original size. There are no drop-in...
by Dbug
Thu May 05, 2011 5:18 pm
Forum: Games
Topic: The Return of Viking Chess (Hnefatafl)
Replies: 268
Views: 317237

Yeah you can't have inverse video using the normal BASIC functions. When you use the value "2" all it does is to draw in Exclusive OR, which inverts the graphic patterns, it does not enable the inverted video mode. The reason is that the invert video mode works on a full byte, not at the p...
by Dbug
Wed May 04, 2011 7:08 pm
Forum: Operating systems, utilities and other serious software
Topic: An Oric "TOOLS.DSK" archive?
Replies: 11
Views: 23184

Forth indeed is a good candidate for developing natively on the Oric, it's faster than Basic, does not require as much complex parsing as the C, and as far as I can tell it has pretty good performance.
by Dbug
Mon May 02, 2011 7:35 pm
Forum: Games
Topic: The Return of Viking Chess (Hnefatafl)
Replies: 268
Views: 317237

I guess this works, but I'm going to suggest an alternative solution. First don't forget you can use the invert video to have different colors, it's great for cursor selection or highlights. Then what I would do, is to: - automatically show the possible moves as soon as I hover on a piece that can b...