Difference between revisions of "Sector Dump Format"

From Ninerpedia
Jump to navigation Jump to search
m
m
Line 1: Line 1:
Should add something here
A disk image in '''Sector Dump Format''' is defined as a concatenation of all sector contents in logical sequence. These disk image files are typically suffixed with ".dsk" or ".DSK".


(Well, in short, SDF is just a concatenation of the contents of sectors 0...max, with max=359 for 90KiB disks etc.)
In the TI world, all sectors are 256 bytes long.


'''TODO'''
{| style="width:60%; text-align:center"
|-
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | 0
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | 1
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | 2
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | 3
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | 4
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | 5
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | 6
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | 7
| style="border: 1px solid black; padding:0.2ex; width:8%; background-color:#dddddd" | ...
| style="border: 1px solid black; padding:0.2ex; width:4%; background-color:#dddddd" | n-1
| style="border: 1px solid black; padding:0.2ex; width:15%; background-color:#aacccc" | [Bad sectors map]
|}
 
It should be noted that the SDF does not represent the ''physical sequence'' of sectors per track. The sectors on a real floppy disk are arranged by an interleave per track, with a skew from track to track. See more about the real arrangement in the article on the [[Track Dump Format]].
 
== Standard format ==
In the standard format, which is used in many emulators like v9t9, MAME, or js99er, the file only consists of the sectors, and no bad sector map is available.
 
Files can easily be checked for this format by verifying that the total file size is a multiple of 256. Also, single density format defines tracks with 9 sectors per track, while double density contains 18 sectors per track. There is one exception: The original TI DD controllers (or the HX5102 Hexbus floppy) use 16 sectors/track for double density.
 
Assuming that we have a 9 or 18 sectors/track layout, SDF image sizes should be expected to be a multiple of 9·256 = 2304 bytes.
 
Since the format does not encode any metadata, there are situations where the original disk format cannot be determined easily. In particular, a double-sided/single density (DSSD) format has the same sector count as a single-sided/double density (SSDD) format. The same issue appears for 80 track images with single density versus 40 track images with double density.
 
In these cases, looking into sector 0 may help to unambiguate the format analysis.
 
== Extended format ==
There is one extension to the SDF which adds 768 bytes at the end, containing a map of bad sectors. File sizes are a multiple of 256 plus 768; that is, if the file size is not a multiple of 256, but is 768 bytes longer, the file is very likely a sector dump with bad sectors map.
 
This was introduced by a tool to read real TI floppy disks on a PC. Emulators typically ignore these additional bytes. For that reason, this format is really rare to find.
 
== MAME Hard disk format (legacy) ==
In very early releases, the MESS emulator (now part of MAME) supported hard disk image files in a sector dump format. However, for quite some time, MESS (and MAME) require images in CHD format.

Revision as of 19:26, 15 March 2018

A disk image in Sector Dump Format is defined as a concatenation of all sector contents in logical sequence. These disk image files are typically suffixed with ".dsk" or ".DSK".

In the TI world, all sectors are 256 bytes long.

0 1 2 3 4 5 6 7 ... n-1 [Bad sectors map]

It should be noted that the SDF does not represent the physical sequence of sectors per track. The sectors on a real floppy disk are arranged by an interleave per track, with a skew from track to track. See more about the real arrangement in the article on the Track Dump Format.

Standard format

In the standard format, which is used in many emulators like v9t9, MAME, or js99er, the file only consists of the sectors, and no bad sector map is available.

Files can easily be checked for this format by verifying that the total file size is a multiple of 256. Also, single density format defines tracks with 9 sectors per track, while double density contains 18 sectors per track. There is one exception: The original TI DD controllers (or the HX5102 Hexbus floppy) use 16 sectors/track for double density.

Assuming that we have a 9 or 18 sectors/track layout, SDF image sizes should be expected to be a multiple of 9·256 = 2304 bytes.

Since the format does not encode any metadata, there are situations where the original disk format cannot be determined easily. In particular, a double-sided/single density (DSSD) format has the same sector count as a single-sided/double density (SSDD) format. The same issue appears for 80 track images with single density versus 40 track images with double density.

In these cases, looking into sector 0 may help to unambiguate the format analysis.

Extended format

There is one extension to the SDF which adds 768 bytes at the end, containing a map of bad sectors. File sizes are a multiple of 256 plus 768; that is, if the file size is not a multiple of 256, but is 768 bytes longer, the file is very likely a sector dump with bad sectors map.

This was introduced by a tool to read real TI floppy disks on a PC. Emulators typically ignore these additional bytes. For that reason, this format is really rare to find.

MAME Hard disk format (legacy)

In very early releases, the MESS emulator (now part of MAME) supported hard disk image files in a sector dump format. However, for quite some time, MESS (and MAME) require images in CHD format.