]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/fd.inc
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / atari / fd.inc
index 31175b3ca76b3a3a8163b8157be51e099acb3c49..aefc802c53c410f391b1384660bac54a0605730a 100644 (file)
@@ -4,18 +4,18 @@
 ; offsets and defines for fdtable (internal use only)
 ;
 
-MAX_FD_INDEX   =       12      ; max. # of open fds
-MAX_FD_VAL     =       8       ; we have 8 IOCBs
+MAX_FD_INDEX    =       12      ; max. # of open fds
+MAX_FD_VAL      =       8       ; we have 8 IOCBs
 
-ft_entrylen = 4        ; length of table entry (it's not sufficient to change here!
-               ; the code sometimes does two bit shifts to multiply/divide by
-               ; this length)
+ft_entrylen = 4 ; length of table entry (it's not sufficient to change here!
+                ; the code sometimes does two bit shifts to multiply/divide by
+                ; this length)
 
-ft_usa  = 0    ; usage counter
-ft_iocb        = 1     ; iocb index (0,$10,$20,etc.), $ff for empty entry
-ft_dev  = 2    ; device of open iocb (0 - device not remembered, eg. filename specified)
-ft_flag = 3    ; flags
-               ; lower 3 bits: device number (for R: and D:)
-               ; bit 3 - seeking supported by DOS/disk combination
-               ; bit 4 - indicates a fd opened by the program as apposed to the
-               ;         inherited ones from program start (fd 0 to fd 2)
+ft_usa  = 0     ; usage counter
+ft_iocb = 1     ; iocb index (0,$10,$20,etc.), $ff for empty entry
+ft_dev  = 2     ; device of open iocb (0 - device not remembered, eg. filename specified)
+ft_flag = 3     ; flags
+                ; lower 3 bits: device number (for R: and D:)
+                ; bit 3 - seeking supported by DOS/disk combination
+                ; bit 4 - indicates a fd opened by the program as apposed to the
+                ;         inherited ones from program start (fd 0 to fd 2)