RWAP Software http://www.rwapadventures.com/forums/ Discussion on RWAP Software Products and suggestions for retro projects en-us 60 Manual Update http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=46&p=117#p117

No new posts
Replies: 0
Views: 57
Last Post By: RWAP View the latest post ON: Sat Feb 27, 2010 5:35 pm
Topic By: RWAP ON: Sat Feb 27, 2010 5:35 pm
Just a quick note to let people know that I have updated the manual for the DivIDE Plus on my website to include instructions on using MDOS3 (I hope I have got them right and they make enough sense)

The manual can be found at:

http://www.rwapsoftware.co.uk/spectrum/ ... orage.html


]]>
RWAP Sat, 27 Feb 2010 17:35:58 GMT
Problematic Games http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=45&p=116#p116

No new posts
Replies: 0
Views: 45
Last Post By: RWAP View the latest post ON: Sat Feb 27, 2010 10:11 am
Topic By: RWAP ON: Sat Feb 27, 2010 10:11 am
Having searched the threads on here, my notes and the WoS threads, I have found two possible solutions to games which do not load under FATware, including the Ultimate games such as Atic Atac and other problem 128K games.

Basically, once you select the file to load and have gone to 48K BASIC enter the command

OUT 32765,48

Then LOAD ""

The other solution appears to be use

OUT 253,48
Then LOAD ""

What is the difference in these two commands?


]]>
RWAP Sat, 27 Feb 2010 10:11:59 GMT
Running DivIDE Plus on an Extension cable http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=44&p=115#p115

No new posts
Replies: 0
Views: 59
Last Post By: RWAP View the latest post ON: Tue Feb 23, 2010 9:57 am
Topic By: RWAP ON: Tue Feb 23, 2010 9:57 am
One of our customers has recently been in touch - they have replaced the 3" disk drive in a ZX Spectrum +3 with a DivIDE Plus interface.

In order to do this, they had to run an extension cable from the Spectrum's expansion port (it was soldered to the various tracks), leaving the expansion port available for other peripherals.

At first the divIDE Plus did not recognise the compact flash card - it was found that by shortening the cable to 5" (approx 125mm), this then allowed the interface to work correctly. It would appear that anything over this length causes too much signal loss.


]]>
RWAP Tue, 23 Feb 2010 09:57:40 GMT
Obtaining DivIDE Plus Interfaces http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=43&p=114#p114

No new posts
Replies: 0
Views: 101
Last Post By: RWAP View the latest post ON: Wed Feb 10, 2010 7:06 am
Topic By: RWAP ON: Wed Feb 10, 2010 7:06 am
This is just to let people know that we still have a few DivIDE Plus interfaces available - we are now listing them on the retro and vintage computer website SellMyRetro.com


]]>
RWAP Wed, 10 Feb 2010 07:06:05 GMT
Re: Using DivIDE Plus on Spectrum 128K, +2, +2A, +2B and +3 http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=28&p=113#p113

No new posts
Replies: 1
Views: 1614
Last Post By: RWAP View the latest post ON: Mon Feb 08, 2010 6:08 pm
Topic By: RWAP ON: Mon Feb 08, 2010 6:08 pm
You can actually still use the 128K editor if you install another BASIC - see

using-divide-plus-with-128k-editor-t42.html


]]>
RWAP Mon, 08 Feb 2010 18:08:43 GMT
Re: Divide+ and +3 Floppy Drive http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=13&p=112#p112

No new posts
Replies: 1
Views: 1938
Last Post By: RWAP View the latest post ON: Mon Feb 08, 2010 6:08 pm
Topic By: RWAP ON: Mon Feb 08, 2010 6:08 pm
There are also some tricks if you only want to move BASIC programs across - see
using-divide-plus-with-128k-editor-t42.html


]]>
RWAP Mon, 08 Feb 2010 18:08:04 GMT
Re: Using DivIDE Plus with 128K Editor http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=42&p=111#p111

No new posts
Replies: 2
Views: 218
Last Post By: RWAP View the latest post ON: Mon Feb 08, 2010 6:05 pm
Topic By: RWAP ON: Mon Feb 08, 2010 6:05 pm
Once you have all of the files across from disk onto the CF card, you can then re-install the Gosh Wonderful BASIC with

Code:
LOAD %"BASIC.bas"


(see I knew there was a reason for storing that program on the CF card).

You may then want to use
Code:
%autorun+ "test.bas"


to force the Spectrum to run your program from CF card as soon as it is switched on.

Remember you can switch it off with
Code:
%autorun-


]]>
RWAP Mon, 08 Feb 2010 18:05:09 GMT
Re: Using DivIDE Plus with 128K Editor http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=42&p=110#p110

No new posts
Replies: 2
Views: 218
Last Post By: RWAP View the latest post ON: Mon Feb 08, 2010 6:05 pm
Topic By: RWAP ON: Fri Feb 05, 2010 3:58 pm
I have also found that there is a much easier way of copying BASIC files from disk to CF card, than needing to change to +3e ROMs...

Unfortunately, both of the commands to disable ResiDOS do not work properly under Gosh Wonderful BASIC

OUT 23,0 - this just hangs the Spectrum
%ZX - this resets the Spectrum, but then goes into ResiDOS and hangs during the drive initialisation.

So what you have to do is:

1. Restart the Spectrum, holding down 1 if you have the firmware selector installed, so that you can go into FATware.
2. Select ResiDOS and reinstall it from scratch with:

Code:
LOAD ""

3. You will have to make do with the 48K editor for the next bit....

4. Disable ResiDOS with the command
Code:
%ZX


5. Load your program from 3" disk with
Code:
LOAD "program"

(LOAD is on the letter J)

6. Re-enable ResiDOS with the command:
Code:
OUT 23,104


( OUT is SHIFT, Extended Mode, O)

7. Now save your progvram to the compact flash card with:
Code:
SAVE  %"Test.bas" LINE 1

(SAVE is on the letter S, LINE is SHIFT, Extended Mode, 3))

-- Repeat steps 4 to 7 until you hae copied your programs across.


]]>
RWAP Mon, 08 Feb 2010 18:05:09 GMT
Using DivIDE Plus with 128K Editor http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=42&p=109#p109

No new posts
Replies: 2
Views: 218
Last Post By: RWAP View the latest post ON: Mon Feb 08, 2010 6:05 pm
Topic By: RWAP ON: Fri Feb 05, 2010 10:53 am
I was asked by a customer how to ensure that his Spectrum+3 with DivIDE Plus always started up with ResiDOS and with the 128K +3 BASIC editor.

Having investigated this, the best solution is still to use the firmware selector from Tygrys which we supply - you can select ResiDOS and 128K mode and the Spectrum will then always launch with this firmware installed.

Moving on, to get the 128K BASIC editor (rather than a 48K editor), I see that you need to install either the Gosh Wonderful BASIC ROM (http://www.wearmouth.demon.co.uk/) or SE BASIC (Can someone provide a current link to SE BASIC).

Once installed with:

Code:
CLEAR 32767
%INSTALL "gw03.rom",1
%ROM "gw03"


You then get given a 128K editor as soon as the Spectrum starts up.

I saved this on the Compact flash card as BASIC.bas, so I could just use:

Code:
LOAD %"BASIC.bas"

to reinstall the Gosh Wonderful BASIC when I had to reinstall ResiDOS.

Much easier to type on a +3 Spectrum now!

Just one issue then - how to get files from a +3 disk to a compact flash card.
It looks as though the only solution is to upgrade to a +3e ROM set - once I do this, can someone then please advise on the commands to use to copy a file from disk to the CF card, as I am not sure I understand the +3e instructions?


]]>
RWAP Mon, 08 Feb 2010 18:05:09 GMT
Re: +DivIDE Manager http://www.rwapadventures.com/forums/viewtopic.php?f=3&t=40&p=108#p108

No new posts
Replies: 3
Views: 505
Last Post By: Vapula View the latest post ON: Wed Dec 09, 2009 4:52 pm
Topic By: Vapula ON: Wed Dec 09, 2009 4:52 pm
Thank you for your work... I'll have a look at it as soon as possible.


]]>
Vapula Wed, 09 Dec 2009 16:52:11 GMT