]> git.sur5r.net Git - cc65/blob - asminc/_file.inc
Separate header and trailers of Atari system_check chunk.
[cc65] / asminc / _file.inc
1 ;
2 ; _file.inc
3 ;
4 ; (C) Copyright 2002 Ullrich von Bassewitz (uz@cc65.org)
5 ;
6
7 ; Assembler include file that makes the constants and structures in _file.h
8 ; available for asm code.
9
10 ; Struct _FILE
11 .struct _FILE
12         f_fd        .byte
13         f_flags     .byte
14         f_pushback  .byte
15 .endstruct
16
17 ; Flags field
18 _FCLOSED        = $00
19 _FOPEN          = $01
20 _FEOF           = $02
21 _FERROR         = $04
22 _FPUSHBACK      = $08
23
24 ; File table
25 .global         __filetab
26
27