block availability map

In computer file systems, a block availability map (BAM){{cite book|last=Englisch|first=Lothar|title=The Anatomy of the 1541 Disk Drive|url=https://archive.org/details/The_Anatomy_of_the_1541_Disk_Drive|year=1984|publisher=Abacus Software|location=Grand Rapids, MI|isbn=0-916439-01-1|page=[https://archive.org/details/The_Anatomy_of_the_1541_Disk_Drive/page/n97 89]}}{{cite book|title=1541 User's Guide|year=1982|publisher=Commodore Business Machines|page=9}}{{cite book|title=1571 User's Guide|year=1985|publisher=Commodore Business Machines|page=23}}{{cite book|title=1581 User's Guide|year=1987|publisher=Commodore Business Machines|page=34}}{{cite book|title=FD Series User's Manual|year=1992|publisher=Creative Micro Designs|page=108}} is a data structure used to track disk blocks that are considered free (available for new data). It is used along with a directory to manage files on a disk (originally only a floppy disk, and later also a hard disk).

In terms of Commodore DOS (CBM DOS) compatible disk drives, the BAM was a data structure stored in a reserved area of the disk (its size and location varied based on the physical characteristics of the disk). For each track, the BAM consisted of a bitmap of available blocks and (usually) a count of the available blocks. The count was held in a single byte, as all formats had 256 or fewer blocks per track. The count byte was simply the sum of all 1-bits in the bitmap of bytes for the current track.

The following table illustrates the layout of Commodore 1541 BAM. The table would be larger for higher-capacity disks (described below).

class="wikitable"
Total byteBitmap byte 1Bitmap byte 2Bitmap byte 3
Track 1blocks availableBlocks 0–7Blocks 8–15Blocks 16–23
Track 2blocks availableBlocks 0–7Blocks 8–15Blocks 16–23
...............
Track 35blocks availableBlocks 0–7Blocks 8–15Blocks 16–23

The bitmap was contained in 3 bytes for Commodore 1541 format (single-sided) disks because it had 17 to 20 sectors per track (note 3 bytes can hold at least 20 bits).{{cite book|title=1541 User's Guide|year=1982|publisher=Commodore Business Machines|page=65}} Similarly, the Commodore 1571 used 3 bytes for the bitmap of each track, but the BAM was twice the size because there were twice as many tracks when formatted as double-sided.{{cite book|title=1571 User's Guide|year=1985|publisher=Commodore Business Machines|pages=108–109}} In contrast, the Commodore 1581 disk drive used 5 bytes for the bitmap because the disk format had 40 blocks per track (note 5 bytes can hold 40 bits).{{cite book|title=1581 User's Guide|year=1987|publisher=Commodore Business Machines|pages=119–120}}

In the bitmap of any format, a 1 bit indicated the block was available (free), while a 0 bit indicated the block was not available (used), and the bitmap data was stored low-byte first. So the first byte held a map for blocks 0 to 7, the second byte held a map for blocks 8 to 15, and so on. Within a byte, the bitmap was ordered low-bit first. For example, the first byte would represent block 0 with the least significant bit and block 7 with the most significant bit.

Storage devices by Creative Micro Designs, intended for use with CBM computers, also used a Block Availability Map which served the same purpose. However, these devices (FD-2000, FD-4000, and CMD-HD) did not include a count byte, and the bits in each byte were reversed (high-bit first). Although the bits were reversed (compared to CBM formats), the bytes were still stored in the same order (low-byte first).{{cite book|title=FD Series User's Manual|year=1992|publisher=Creative Micro Designs|pages=112–114}}

class="wikitable"
Bitmap byte 1Bitmap byte 2...Bitmap byte 32
Track 1Blocks 0–7Blocks 8–15...Blocks 248–255
Track 2Blocks 0–7Blocks 8–15...Blocks 248–255
...............

See also

References

{{Reflist}}

{{DEFAULTSORT:Block Availability Map}}

Category:Computer file systems

Category:Data structures