]> git.sur5r.net Git - cc65/blobdiff - asminc/_file.inc
remote TABs in doc/ and test/
[cc65] / asminc / _file.inc
index daf33a9876f9ae10341c752f43baf6756ef25539..2f9938a3ede00e14f128abc883f707ad72494ca9 100644 (file)
@@ -7,10 +7,12 @@
 ; Assembler include file that makes the constants and structures in _file.h
 ; available for asm code.
 
-; Struct _FILE offsets and size
-_FILE_f_fd      = $00
-_FILE_f_flags   = $01
-_FILE_size      = $02
+; Struct _FILE
+.struct _FILE
+        f_fd        .byte
+        f_flags     .byte
+        f_pushback  .byte
+.endstruct
 
 ; Flags field
 _FCLOSED        = $00
@@ -22,3 +24,4 @@ _FPUSHBACK      = $08
 ; File table
 .global         __filetab
 
+