home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / GXY-INF.LHA / infos / diskreference < prev    next >
Encoding:
Text File  |  1996-03-09  |  8.6 KB  |  220 lines

  1. ; **********************************************************************
  2. ; *                       D I S K   D R I V E                   *
  3. ; **********************************************************************
  4.  
  5. ;                                Page 004
  6.  
  7. ; Introduction :
  8. ; --------------
  9.  
  10. ;     This part of the reference is about disk drives. It concerns  only
  11. ; about floppies,  so if  you need  information about  harddisks, please
  12. ; refer to the appropriate books currently available.
  13.  
  14. ;     The main part of this reference is taken  from the German  magazine
  15. ; AMIGA published by Markt & Technik, containing a course on floppies 
  16. ; from the 12th issue 1988 to the 5th issue 1989.
  17.  
  18.  
  19. ; Basic Disk Info :
  20. ; -----------------
  21.  
  22. ; Tracks         80   (0-79)   =   2  Cylinders.
  23. ; Cylinders     160   (0-169)  =  10 blocks.
  24. ; Blocks       1760   (0-1759) = 512 Bytes.
  25. ; Disk Capacity = 1760 * 512 = 901120 bytes = 880 KB.
  26.  
  27.  
  28. ; Boot-Block :
  29. ; ------------
  30.  
  31. ;     The boot block resides on track 0 sector 0, and has the following
  32. ; meaning :
  33.  
  34. ; Track: Sector: Offset: Length: Remarks:
  35. ; ------ ------- ------- ------- ---------------------------------------
  36. ;     0       0   $00       L    Format identifier.
  37. ;                   'KICK'  = Kickstart floppy.
  38. ;                   'DOS',0 = Dos floppy.
  39. ;     0       0   $04       L    Block checksum.
  40. ;     0       0   $08       L    Block number of root block (norm. 880)
  41. ;     0       0   $0C     $1F0   Assembler programm.
  42.  
  43. ; Root-Block :
  44. ; ------------
  45.  
  46. ;     The root block is the most important block on a standard dos-disk,
  47. ; since it contains information about the root-directory on your floppy.
  48.  
  49. ; Track: Sector: Offset: Length: Remarks:
  50. ; ------ ------- ------- ------- ---------------------------------------
  51. ;    40       0   $00       L    Primary type ($00000002).
  52. ;    40       0   $04       L    ($00000000)
  53. ;    40       0   $08       L    ($00000000)
  54. ;    40       0   $0C       L    Hash tabel size ($00000048).
  55. ;    40       0   $10       L    ($00000000)
  56. ;    40       0   $14       L    Checksum.
  57. ;    40       0   $18       L    First entry in hash tabel.
  58. ;    40       0   ...
  59. ;    40       0   $134      L    Last entry in hash tabel.
  60. ;    40       0   $138      L    Flag for bitmap block.
  61.                    $FFFFFFFF = Bitmap useable.
  62.                    $00000000 = Bitmap not useable.
  63.                              This will enable the
  64.                          disk-validator to check
  65.                          the disk again and
  66.                          update the bitmap block.
  67. ;    40       0   $13C      L    Pointer towards bitmap block.
  68. ;    40       0   $140      L    ($00000000)
  69. ;    40       0   ...
  70. ;    40       0   $1A0      L    ($00000000)
  71. ;    40       0   $1A4      L    Last written: Date (#Days since 1/1/1978)
  72. ;    40       0   $1A8      L    Last written: Time (#minutes)
  73. ;    40       0   $1AC      L    Last written: Seconds (#1/50 seconds)
  74. ;    40       0   $1B0    $24    Disk name.
  75. ;    40       0   $1E4      L    Creation date.
  76. ;    40       0   $1E8      L    Creation time.
  77. ;    40       0   $1EC      L    Creation second.
  78. ;    40       0   $1F0      L    ($00000000)
  79. ;    40       0   ...
  80. ;    40       0   $1F8      L    ($00000000)
  81. ;    40       0   $1FC      L    Secondary type ($00000001)
  82.  
  83.  
  84. ; File Header Block :
  85. ; -------------------
  86.  
  87. ;   The file info block contains information about a file, where it resides
  88. ; on the disk etc.
  89.  
  90. ; Track: Sector: Offset: Length: Remarks:
  91. ; ------ ------- ------- ------- ---------------------------------------
  92. ;     ?       ?   $00       L    Primary type ($00000002).
  93. ;     ?       ?   $04       L    Pointer towards own block.
  94. ;     ?       ?   $08       L    Number of blocks relating to this file.
  95. ;     ?       ?   $0C       L    Number of data blocks in this table.
  96. ;     ?       ?   $10       L    First data block of file.
  97. ;     ?       ?   $14       L    Checksum.
  98. ;     ?       ?   $18       L    Block entry of last data block.
  99. ;     ?       ?   ...
  100. ;     ?       ?   $134      L    Block entry of first data block.
  101. ;     ?       ?   $138      L    ($00000000)
  102. ;     ?       ?   $13C      L    ($00000000)
  103. ;     ?       ?   $140      L    Protection flags.
  104.                    Lower 8 bits.
  105. ;     ?       ?   $144      L    Length of file in blocks.
  106. ;     ?       ?   $148     $5C   Commentary.
  107. ;     ?       ?   ...
  108. ;     ?       ?   $1A0      L    Commentary.
  109. ;     ?       ?   $1A4      L    Days.
  110. ;     ?       ?   $1A8      L    Hours/Minutes.
  111. ;     ?       ?   $1AC      L    Seconds.
  112. ;     ?       ?   $1B0     $20   Filename (BCPL string).
  113. ;     ?       ?   ...
  114. ;     ?       ?   $1F0      L    Next entry in same hash tabel.
  115. ;     ?       ?   $1F4      L    Pointer towards the directory block in 
  116.                  which this file is a part.
  117. ;     ?       ?   $1F8      L    Pointer towards File List Block.
  118. ;                   $00000000 = No file list block.
  119. ;     ?       ?   $1FC      L    Secondary type ($FFFFFFFD).
  120.  
  121.  
  122. ; File List Block :
  123. ; -----------------
  124.  
  125. ;     The file list block is used whenever two files have the same hash
  126. ; entry. When this is the case, the file info block tells where this block
  127. ; is.
  128.  
  129. ; Track: Sector: Offset: Length: Remarks:
  130. ; ------ ------- ------- ------- ---------------------------------------
  131. ;     ?       ?   $00       L    Primary type ($00000010).
  132. ;     ?       ?   $04       L    Pointer towards own block.
  133. ;     ?       ?   $08       L    Number of entries in this table.
  134. ;     ?       ?   $0C       L    ($00000000)
  135. ;     ?       ?   $10       L    First data block of the table.
  136. ;     ?       ?   $14       L    Checksum.
  137. ;     ?       ?   $18       L    Block list: Last block.
  138. ;     ?       ?   ...
  139. ;     ?       ?   $134      L    Block list: First block.
  140. ;     ?       ?   $138      L    ($00000000)
  141. ;     ?       ?   ...
  142. ;     ?       ?   $1F0      L    ($00000000)
  143. ;     ?       ?   $1F4      L    Pointer to File Header Block.
  144. ;     ?       ?   $1F8      L    Pointer to next File List Block.
  145. ;     ?       ?   $1FC      L    Secondary type ($FFFFFFFD)
  146.  
  147.  
  148. ; User Directory Block :
  149. ; ----------------------
  150.  
  151. ;     The user directory block is much like the root-block. The following
  152. ; listing displays the contents of the block.
  153.  
  154. ; Track: Sector: Offset: Length: Remarks:
  155. ; ------ ------- ------- ------- ---------------------------------------
  156. ;     ?       ?   $00       L    Primary type ($00000002).
  157. ;     ?       ?   $04       L    Pointer to own block number.
  158. ;     ?       ?   $08       L    ($00000000)
  159. ;     ?       ?   ...
  160. ;     ?       ?   $10       L    ($00000000)
  161. ;     ?       ?   $14       L    Checksum.
  162. ;     ?       ?   $18       L    First entry in hash tabel.
  163. ;     ?       ?   ...
  164. ;     ?       ?   $134      L    Last entry in hash tabel.
  165. ;     ?       ?   $138      L    ($00000000)
  166. ;     ?       ?   $13C      L    ($00000000)
  167. ;     ?       ?   $140      L    Protection flags.
  168. ;     ?       ?   $144      L    ($00000000)
  169. ;     ?       ?   $148     $5C   Commentary.
  170. ;     ?       ?   $1A4      L    Last written: Date (#Days since 1/1/1978)
  171. ;     ?       ?   $1A8      L    Last written: Time (#minutes)
  172. ;     ?       ?   $1AC      L    Last written: Seconds (#1/50 seconds)
  173. ;     ?       ?   $1B0    $24    Directory name.
  174. ;     ?       ?   ...
  175. ;     ?       ?   $1F0      L    Next entry with same hash value.
  176. ;     ?       ?   $1F4      L    Pointer to parent directory.
  177. ;     ?       ?   $1F8      L    ($00000000)
  178. ;     ?       ?   $1FC      L    Secondary type ($00000002)
  179.  
  180.  
  181. ; File Data Block :
  182. ; -----------------
  183.  
  184. ;     The file data block is the most simple of the block types. This is
  185. ; type of block which the File Header Block points to, so it is here the
  186. ; actual data of a file reside.
  187.  
  188. ; Track: Sector: Offset: Length: Remarks:
  189. ; ------ ------- ------- ------- ---------------------------------------
  190. ;     ?       ?   $00       L    Primary type ($00000008).
  191. ;     ?       ?   $04       L    Pointer to file header block.
  192. ;     ?       ?   $08       L    Ascending number of the block in the list.
  193. ;     ?       ?   $0C       L    Number of data bytes in this block.
  194. ;     ?       ?   $10       L    Pointer to next data block.
  195. ;     ?       ?   $14       L    Checksum.
  196. ;     ?       ?   $18     $1E8   Data.
  197. ;     ?       ?   ...
  198. ;     ?       ?   $1FC      L    Data.
  199.  
  200.  
  201. ; Bitmap Block :
  202. ; --------------
  203.  
  204. ;     This block shows which blocks are and which are not. The block number
  205. ; of this block can be obtained in the root directory offset $13C. 
  206. ; Remember to check that $138 in the root block is > 0.
  207.  
  208. ;     
  209. ; Track: Sector: Offset: Length: Remarks:
  210. ; ------ ------- ------- ------- ---------------------------------------
  211. ;     ?       ?   $00       L    Checksum.
  212. ;     ?       ?   $04       L    Blocks 0002-0033, bits set = free.
  213. ;                   Bit 0  = Block 2.
  214. ;                   Bit 1  = Block 3.
  215. ;                   ...
  216. ;                   Bit 31 = Block 33.
  217. ;     ?       ?   ...
  218. ;     ?       ?   $DC       L    Blocks 1730-1759/0-1.
  219.  
  220.