1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Fixed C&P issue.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3967 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2009-06-21 08:41:24 +00:00
parent f1039974a6
commit 56c12fd66f
2 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@ The function <htmlurl url="dio-1.html" name="dio_open()"> has the single paramet
slot and drive pair is mapped to that <tt/drive_id/ according to the formula
<verb>
<tt/drive_id/ = (slot * 2) + (drive - 1)
drive_id = (slot * 2) + (drive - 1)
</verb>
so that for example slot 6 drive 1 is mapped to <tt/drive_id/ 12.

View File

@ -321,7 +321,7 @@ The function <htmlurl url="dio-1.html" name="dio_open()"> has the single paramet
slot and drive pair is mapped to that <tt/drive_id/ according to the formula
<verb>
<tt/drive_id/ = (slot * 2) + (drive - 1)
drive_id = (slot * 2) + (drive - 1)
</verb>
so that for example slot 6 drive 1 is mapped to <tt/drive_id/ 12.