We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e75468 commit f6966caCopy full SHA for f6966ca
NOTES.md
@@ -0,0 +1,17 @@
1
+
2
+# Devices with non-standard (or rather - non-valid) size
3
4
+Many existing devices (HDFs) have sizes not rounded to 512-byte blocks (like
5
+2000000 or 5000000). Access to such devices using ADFlib is through 512-byte
6
+blocks and, therefore, limited to:
7
8
+ floor(size / 512) * 512
9
10
+meaning that remaining, smaller than 512-byte part after the last full block
11
+cannot be accessed.
12
13
+Note that in such cases the size calculated from device's geometry:
14
15
+ cylinders * heads * sectors * sector_size (512)
16
17
+is different from the size of HDF file.
0 commit comments