Search found 1474 matches

by zephyr
Tue Feb 25, 2014 6:31 pm
Forum: Hints and Tips
Topic: Disk drives and controllers for the Dragon 32/64
Replies: 14
Views: 17590

Disk drives and controllers for the Dragon 32/64

I know very little about the Cumana and Delta disk systems. My current basic knowledge of these systems is as follows: DragonDOS Controller + DragonDOS/SuperDOS (THE BEST) Cumana Controller + CumanaDOS = DragonDOS compatible (GOOD) Delta Controller + DeltaDOS = NOT DragonDOS compatible (JUNK) I woul...
by zephyr
Tue Feb 25, 2014 4:15 pm
Forum: Dragon General
Topic: XRoar 0.31 released
Replies: 69
Views: 32975

Re: XRoar 0.31 released

Here are a couple of screen shots. The first screen shot shows the latest snapshot (xroar-snap-2014-05325-w32) with the Telewriter (.dmk) disk. The second screen shot shows the older snapshot (XRoar snap-20130309-w32) with the exact same copy of the Telewriter (.dmk) disk. The same thing happens whe...
by zephyr
Tue Feb 25, 2014 3:56 pm
Forum: Dragon General
Topic: XRoar 0.31 released
Replies: 69
Views: 32975

Re: XRoar 0.31 released

Thanks. :)
by zephyr
Tue Feb 25, 2014 3:41 pm
Forum: Dragon General
Topic: XRoar 0.31 released
Replies: 69
Views: 32975

Re: XRoar 0.31 released

You might have to restrict yourself to using DMK format disks, I don't know any way of signalling single density in the other formats. If I create a new disk test.dmk, I'm able to INIT A, save to it, etc. That doesn't work for me using the Win32 version under Windows XP Pro. The same test works per...
by zephyr
Tue Feb 25, 2014 3:28 pm
Forum: Dragon General
Topic: Saving machine code games to DeltaDOS disk?
Replies: 6
Views: 3359

Saving machine code games to DeltaDOS disk?

Most machine code programs (games) have an EXEC address which is different to the START address. A typical example is: START ADDRESS = $0C00, END ADDRESS = $7000, EXEC ADDRESS = $4000. The DeltaDOS manual states that the SAVEM command only accepts a START and END address (SAVEM"NAME",START,END). How...
by zephyr
Tue Feb 25, 2014 1:11 pm
Forum: Dragon General
Topic: XRoar 0.31 released
Replies: 69
Views: 32975

Re: XRoar 0.31 released

DeltaDOS emulation is not working correctly. Trying to read or write to virtual disk results in DeltaDOS returning a NOT READY ERROR or SEEK ERROR.

I'm using the latest snapshot version (xroar-snap-2014-05325-w32.zip).
by zephyr
Tue Feb 25, 2014 12:57 am
Forum: Hints and Tips
Topic: Improved keyboard response for the Dragon 32/64
Replies: 4
Views: 4926

Re: Improved keyboard response for the Dragon 32/64

Here is an improved auto-running DOS compatible version. Follow the previous instructions for saving to disk.
by zephyr
Mon Feb 24, 2014 7:06 pm
Forum: Hints and Tips
Topic: Improved keyboard response for the Dragon 32/64
Replies: 4
Views: 4926

Re: Improved keyboard response for the Dragon 32/64

Here is a DOS compatible auto-running machine code version. To save SKEYDOS to CumanaDOS/DragonDOS/DOSPlus/SuperDOS disk : (1) CLEAR200,32000 (2) CLOADM"SKEYDOS" (3) SAVE"SKEYDOS",32382,32567,35725 To save SKEYDOS HDB-DOS disk : (1) CLEAR200,32000 (2) CLOADM"SKEYDOS" (3) SAVEM"SKEYDOS",32382,32567,3...
by zephyr
Mon Feb 24, 2014 3:54 pm
Forum: Hints and Tips
Topic: Improved keyboard response for the Dragon 32/64
Replies: 4
Views: 4926

Re: Improved keyboard response for the Dragon 32/64

Here in an alternative version of Steve Woolham's Speedkey routine. This updated version is also compatible with all known versions of CoCo and Dragon DOS (The original SpeedKey routine is not compatible with HDB-DOS). 10 GOSUB 10000 20 END 10000 ' ENABLE SPEEDKEY 10010 IF PEEK(269)+PEEK(270)<>1 THE...
by zephyr
Mon Feb 24, 2014 3:19 am
Forum: Uploads
Topic: Fairground Fantasy by Abrasco
Replies: 6
Views: 3715

Re: Fairground Fantasy by Abrasco

Here is a further improved version of the game. Changes made to this version: * Size optimized the game code to help save memory and optimize game speed * Greatly improved keyboard response by adding Steve Woolham's Speedkey routine * Added X=RND(-TIMER) to make each new game as random as possible *...