]> git.sur5r.net Git - cc65/commitdiff
Added reference to dio_query_sectcount().
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 25 Aug 2008 20:23:12 +0000 (20:23 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 25 Aug 2008 20:23:12 +0000 (20:23 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3893 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/dio.sgml

index 83a2edc4d58d7ccb4c50b5d636ca8c0b3a05423e..685e3454f2dc368bc436231649f0408bc78598cb 100644 (file)
@@ -67,15 +67,21 @@ This function will write the memory contents at buffer to the sector specified
 by <tt>sect_num</tt>. A verification is performed.
 <p>
 
-Use the <tt><ref name="dio_query_sectsize" id="sectsize"></tt> function to query the size of a sector.
+Use the <tt><ref name="dio_query_sectsize" id="sectsizecount"></tt> function to query
+the size of a sector and the <tt><ref name="dio_query_sectcount" id="sectsizecount"></tt>
+function to query the number of available sectors.
+<p>
 
 All these functions will return 0 for success and an OS specific error code in
 case of failure.
 <p>
 
-<sect>Querying sector size<label id="sectsize"><p>
+<sect>Querying sector size and count<label id="sectsizecount"><p>
+
+Some systems support multiple diskette formats which have different sector sizes
+and/or different sector counts.
+<p>
 
-Some systems support multiple diskette formats which have different sector sizes.
 The following function returns the sector size of the currently inserted disk:
 
 <tscreen><verb>
@@ -85,6 +91,13 @@ The following function returns the sector size of the currently inserted disk:
 On the Atari platform, the sector size is handled specially. Please refer
 to the DIO section in the <htmlurl url="atari.html" name="Atari">
 specific platform documentation.
+<p>
+
+The following function returns the sector count of the currently inserted disk:
+
+<tscreen><verb>
+    sectnum_t __fastcall__ dio_query_sectcount(dhandle_t handle);
+</verb></tscreen>
 
 <sect>Converting sector numbers<p>