X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=asminc%2F_file.inc;h=916215bcea6a3fc814fb40cde476b9080d172f45;hb=5c63b08d26cf167bfe8ef1a52f6e6f1dd0746a83;hp=14a9412a7e336b635ecd7b2f16b8080dbf27e05d;hpb=6556d25662de8c8c274f4f9b9473f1c75e319fcf;p=cc65 diff --git a/asminc/_file.inc b/asminc/_file.inc index 14a9412a7..916215bce 100644 --- a/asminc/_file.inc +++ b/asminc/_file.inc @@ -7,20 +7,18 @@ ; 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 +.endstruct -; Flags field +; Flags field _FCLOSED = $00 _FOPEN = $01 _FEOF = $02 _FERROR = $04 _FPUSHBACK = $08 - -; Maximum number of open files (size of table) -FOPEN_MAX = 8 ; File table .global __filetab