Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
 Welcome to our latest new user lotus_skylight ! (Registered 2024-09-25) You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > Disk ID causing trouble
2005-05-28 22:36
Cybernator

Registered: Jun 2002
Posts: 154
Disk ID causing trouble

Apparently when the 1541 seeks a track (using the ROM routines), it _doesn't_ ignore the ID which is inside the header block, but compares it to the ID stored on zeropage (can't recall the exact address right now). The seek command is issued by the "execute" jobcode ($e0) and, unless I loaded something from the disk before, the seek fails. To overcome the problem, I invoke the initialize routine at $d005 as first thing in my loader. Now two problems arise:
1. Unless run on a stock 1541, the loader locks up immediately (e.g. SpeedDOS)
2. If I flip the disk, I need to invoke "initialize" once again, but for some reason it fails this time (locking up). And I'm dangerously low on memory, so I cannot write my own routines which would eventually ignore the ID.
A simple solution is to format both sides with the same ID, but that would complicate copying, which is completely undesirable. I've been trying to catch up something in AAY1541, but no luck so far.

Any suggestions? Is there a way to tell DOS to ignore the ID, or set it as unknown so that DOS reads it from disk before seeking?

Btw, the problem might actually be occuring while seeking a sector using the routine at $f50a.
2005-05-29 00:43
cadaver

Registered: Feb 2002
Posts: 1159
I could be horribly wrong, but doesn't the error handling routine decode the GCR header track/sector to $16,$17? So after it fails for the first time, you'd do

lda $16
sta $12
lda $17
sta $13

and it'd work on the next attempt. At least that has worked for me (disksidechanges etc.) in usual IRQ-loader driveparts, though I've been relying on the read-jobcode...
2005-05-29 10:41
Cybernator

Registered: Jun 2002
Posts: 154
Uhm, the execute job doesn't return an error code. If you don't overwrite the jobcode with an errorcode yourself, the execute will be invoked endlessly. However, when the diskside changes, I can try the seek jobcode for example. It should return the Disk ID Mismatch error. Thanks a lot for the tip!

There's another thing I'm curious about. Where do emulators take the ID from? (since D64 files don't have that data). It's probably the ID in the directory, but I'm not sure.

Off to see if this will work.
2005-05-29 17:41
Graham
Account closed

Registered: Dec 2002
Posts: 990
What about setting the "disk changed"-flag in $1C and try to read a block? Should work + initialise the ID. Using the "I" routines is not a good idea, some 1541 ROMs do a head bump then (annoying).
2005-05-29 22:24
Cybernator

Registered: Jun 2002
Posts: 154
The seek idea worked, even without lda $16:sta $12:lda $17:sta $13.

@Graham: The default value of $1c seems to be 0 (CCS). Will any nonzero value do the job?
2005-05-30 00:41
anix
Account closed

Registered: Feb 2004
Posts: 35
about disk-change-flag, i modified one of my 1541 to not care about write-protect-notches and since i did that, i'm always getting errors about Disk-ID... is the notch-sensor the method that disk-change was detected? i think some turn-disk-parts have still worked, but maybe i should test it again
2005-05-30 07:54
V-12

Registered: Nov 2003
Posts: 206
I got this problem about "disk id mismatch" since my disc drive fucked up for a first time. It was caused by broken power supply. It crashed up ROM too. So I replaced ROM in my disc drive and power supply and realised that now the disc drive always show me "disc id mismatch' error when I put new disc. And finally I've recovered the reason - broken photo-diode which checks if disc are protected or not (Inside the disc drive this diode is located at the left down corner on small green board). I suppose that maybe it's a possibility to make small modifications in ROM and remove that stupid disk id mismatch or just add automatickly initialisation before all disc operations. The best way is to replace broken photo-diode but from my experience you need to replace with exactly the same diode (from other disc drive).

Also another trick - if yours disc drive shows all the time "disc id mismatch" and the photodiode is probably broken, you can also write stuff on protected discs.

Since few years I'm using switcher for protected disc - I just solve both legs from the diode - it gives me "disc id mismatch" too but I can write stuff on protected files. But the photodiode is not broken.

Ok enough about it, let me know if you have more questions :)
2005-05-30 12:20
anix
Account closed

Registered: Feb 2004
Posts: 35
@murdock: that's what i have done, shorted the leads of that diode through a spst... and since then i have the disk-ID problem. i guess there's no easy way to disable write-protect without causing the ID problem ? :(
2005-05-30 12:29
Kisiel
Account closed

Registered: Jul 2003
Posts: 56
Murdock you can use BC108 transistor with polished top of the housing (it's round metal package).. becouse every transistor is a fotodiode. I change original fotodiode many years ago and this solution still working.. as you can check on every north party in poland :) I forgot what was with the emiter diode, but if you change it to yellowone it will be good choice :)
2005-05-30 13:00
Graham
Account closed

Registered: Dec 2002
Posts: 990
The drive uses the write protect sense to find out if a new disk has been inserted. Shortening the sense will cause a lot of trouble.
2005-05-30 16:50
V-12

Registered: Nov 2003
Posts: 206
anix: aah understand..I didn't readed carefully your last post :) well maybe only with changing the ROM of the drive it would work...but I know another solution which did my friend. He added the reset for the solved lines... I really would like to remove that "disk id mismatch" too without another electronic modifications.
2005-05-31 09:38
Kisiel
Account closed

Registered: Jul 2003
Posts: 56
Murdock I think it worst solution to fix this problem. As Graham sayed "Shortening the sense will cause a lot of trouble".. the problems will come then you change disk to even other side and traying to write some things with wrong ID (old). To fix this problem you must check every time disk ID before read and write.... for me it's stupid solution.
2005-05-31 11:13
V-12

Registered: Nov 2003
Posts: 206
Kisiel: check this: it works. ask Reiter:

http://www.filety.lh.pl/index.php?strona=arty/sprzet/pamietnik/..

greetz
Pawel
2005-06-01 07:18
Kisiel
Account closed

Registered: Jul 2003
Posts: 56
murdock this site does not give us any improvments. After adding switch , you have to press the button on every disk change. For me it's very not convenient solution. BTW we talking about 0,2 to 0,5 Eu and few minutes of work... isn't??? Rom change will cost much more.
2005-06-01 08:04
Graham
Account closed

Registered: Dec 2002
Posts: 990
A ROM change doesn't help anything. The drive still cannot detect disk changes and still doesn't know when to look for a new ID.
2005-06-01 09:28
Kisiel
Account closed

Registered: Jul 2003
Posts: 56
hmm I have idea to fix this problem, add switch to closing device. So if you have 1541-II you must add switch over the header (placed on top cover of disk drive.. glued or something.. inside cover) and this solution works as is:
when you oppening door drive, the steel plate inside drive will press the button (swich) and will give information abut changes to cpu. So now you will have mechanical detector :o)
2005-06-01 12:34
TNT
Account closed

Registered: Oct 2004
Posts: 189
Better idea would be adding monostable multivibrator and send 50 ms low pulse every time the real protection status changes from high to low. That way 1541 DOS detects disk changes but disk is still write enabled.
2005-06-01 14:27
Graham
Account closed

Registered: Dec 2002
Posts: 990
I've got an even better idea: Leave the write protect sense in place and only deactivate it when you need it deactivated.
2005-06-01 17:55
TNT
Account closed

Registered: Oct 2004
Posts: 189
Probably the best idea is to buy disk notcher :)
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
psenough
Guests online: 147
Top Demos
1 Next Level  (9.7)
2 13:37  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Mojo  (9.6)
6 Uncensored  (9.6)
7 Wonderland XIV  (9.6)
8 Comaland 100%  (9.6)
9 No Bounds  (9.6)
10 Unboxed  (9.6)
Top onefile Demos
1 Layers  (9.6)
2 Party Elk 2  (9.6)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.6)
5 Rainbow Connection  (9.5)
6 It's More Fun to Com..  (9.5)
7 Morph  (9.5)
8 Dawnfall V1.1  (9.5)
9 Onscreen 5k  (9.5)
10 Daah, Those Acid Pil..  (9.5)
Top Groups
1 Booze Design  (9.3)
2 Oxyron  (9.3)
3 Nostalgia  (9.3)
4 Censor Design  (9.3)
5 Triad  (9.2)
Top Logo Graphicians
1 Sander  (9.8)
2 Mermaid  (9.5)
3 Facet  (9.4)
4 Shine  (9.4)
5 Pal  (9.4)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.037 sec.