Sector numbers starting with 193 #216
-
I'm trying to read some old floppies from a Z80 CPM/2 system. It uses a PD765 floppy disk controller setup for MFM Mode. I've gone through all the formats and the ones that "find something" all have the messages... T0.0: Ignoring unexpected sector C:0 H:0 R:193 N:2 I assume R is for sector. The lowest sector number is 193 and the highest is 202. All sector numbers between 193 and 202 are found, usually twice. Assuming N is the bytes/sector code... that looks correct as the PD765 data sheet says 02 is for 512 bytes/sector. My question is what would explain the sector numbers being so high? I've looked at the source and it is very well laid out so I think that I can tweak the MFM parameters if given some direction as to why I'm seeing the high sector numbers. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 16 replies
-
Although most systems start sector numbering from 0 or 1, it isn't universal. There is no requirement for sector numbering to start from a particular base, nor even to be consecutive. On this system the numbering starts at 193d = C1h. It's not a problem. Amstrad CPC does this too iirc. |
Beta Was this translation helpful? Give feedback.
-
disk format is only 80 tracks so 2 extra tracks in the read |
Beta Was this translation helpful? Give feedback.
Although most systems start sector numbering from 0 or 1, it isn't universal. There is no requirement for sector numbering to start from a particular base, nor even to be consecutive. On this system the numbering starts at 193d = C1h. It's not a problem. Amstrad CPC does this too iirc.