Thanks for all your help so far, especially Pr0f with the A14 tied high tip. Just programmed both the low and high side of the eprom and hey presto!
I originally made this card 4 years ago and couldn't get it working so put it on the shelf. Was a bit of a retro rookie back then and assumed the card was faulty. Recently got another QL which I had to repair and it rekindled some enthusiasm for my old QubIDE project. So the wrong half of the eprom was programmed all this time! what a relief and what a "cotton headed ninny muggins" I've been .
Now to figure out how to get the Compact flash card working.
Unfortunately the RAM still reports 128 using PRINT (PEEK_L(163872)/1024 - 128).
format win1_ responds with read only. So going through the dark art of CF partition/format procedures. Its a Jessop 64Mb CF so not sure if this has been verified previously as compatible.
Assuming the Jessops 64MB flash card is the one that Qubide has identied as THNCF064MMA - then this card does support 8 and 16 bit IDE according to the datasheet:
I am not sure if this model has a write protect switch - I could not see one mentioned on the datasheet after a quick glance. There is also mention of pin9 being grounded for true IDE mode - I suspect they mean the card pin 9, so maybe worth disconnecting it when it's all off - and checking the adaptor to see if it grounds pin 9.
Apart from the wrong colours, which maybe video cable problems.
The CF Card is being recognised by the QubATA rom, it has seen a partition, which is not a Qubide partition, so the the WIN device driver can not be linked to partition 1.
The WIN_DISK command is not working, because you have not initialised the disk.
A typlical procedure to format your QubATA drive, with the data from your last message is:
Allow partitioning and formatting Media
WIN_FORMAT 1
Initialize the disk for a new Media
WIN_DISK INIT,1
Create a new partition on new or existing Media
WIN_DISK CREATE,1,1,64
Load the new created partition
WIN_DRIVE 1,1,1
Format the new loaded partition
FORMAT WIN1_HD_Drive
Reset protection
WIN_FORMAT 0
This come from the QubATA manual on the QL Homepage.
I think the ram has to fixed, as the Qubide driver loads the Partition map into ram, without the 512K Ram, you will not be able ru much software.
Get 640k ram now that I've swapped the faulty AS6C4008 ram chip
results below
Derek_Stewart wrote: Thu Apr 13, 2023 6:10 pm
Allow partitioning and formatting Media
WIN_FORMAT 1
Works or appears to work but drive light does not flash
Initialize the disk for a new Media
WIN_DISK INIT,1
not found
Create a new partition on new or existing Media
WIN_DISK CREATE,1,1,64
not found
Load the new created partition
WIN_DRIVE 1,1,1
Format the new loaded partition
FORMAT WIN1_HD_Drive
Reset protection
WIN_FORMAT 0
This come from the QubATA manual on the QL Homepage.
I think the ram has to fixed, as the Qubide driver loads the Partition map into ram, without the 512K Ram, you will not be able ru much software.