]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/fdtab.s
Some small first changes for the 'atarixl' target.
[cc65] / libsrc / atari / fdtab.s
index 57598b60063bdc3d1d57c3a2d6e38ce3d87973b1..0c90aefad87e66801eb4c882fc29f30f41f5b5c5 100644 (file)
@@ -5,26 +5,26 @@
 ; the fdtable itself is defined here
 ;
 
-       .include "fd.inc"
+        .include "fd.inc"
 
-       .export fd_table,fd_index
-       .export ___fd_table,___fd_index ; for test(debug purposes only
+        .export fd_table,fd_index
+        .export ___fd_table,___fd_index ; for test(debug purposes only
 
-       .data
+        .data
 
 ___fd_index:
-fd_index:      ; fd number is index into this table, entry's value specifies the fd_table entry
-       .byte   0,0,0           ; at start, three first files are stdin/stdout/stderr.
-       .res    MAX_FD_INDEX-3,$ff
+fd_index:       ; fd number is index into this table, entry's value specifies the fd_table entry
+        .byte   0,0,0           ; at start, three first files are stdin/stdout/stderr.
+        .res    MAX_FD_INDEX-3,$ff
 
 ___fd_table:
-fd_table:      ; each entry represents an open iocb
-       .byte   3,0,'E',0       ; system console, app starts with opened iocb #0 for E:
-       .byte   0,$ff,0,0
-       .byte   0,$ff,0,0
-       .byte   0,$ff,0,0
-       .byte   0,$ff,0,0
-       .byte   0,$ff,0,0
-       .byte   0,$ff,0,0
-       .byte   0,$ff,0,0
+fd_table:       ; each entry represents an open iocb
+        .byte   3,0,'E',0       ; system console, app starts with opened iocb #0 for E:
+        .byte   0,$ff,0,0
+        .byte   0,$ff,0,0
+        .byte   0,$ff,0,0
+        .byte   0,$ff,0,0
+        .byte   0,$ff,0,0
+        .byte   0,$ff,0,0
+        .byte   0,$ff,0,0