]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/_file.s
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / _file.s
index b34a135aa7fdde41ab8d139730082e23abffa37f..84686a062ac834d3dbfeacaf96c82ddbd4411306 100644 (file)
 .data
 
 __filetab:
-        .byte   0, _FOPEN       ; stdin
-        .byte   1, _FOPEN       ; stdout
-        .byte   2, _FOPEN       ; stderr
+        .byte   0, _FOPEN, 0    ; stdin
+        .byte   1, _FOPEN, 0    ; stdout
+        .byte   2, _FOPEN, 0    ; stderr
 .repeat FOPEN_MAX - 3
-        .byte   0, _FCLOSED     ; free slot
+        .byte   0, _FCLOSED, 0  ; free slot
 .endrepeat