]> git.sur5r.net Git - cc65/blob - asminc/_file.inc
Fixed several address size issues
[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 .endstruct
15
16 ; Flags field
17 _FCLOSED        = $00
18 _FOPEN          = $01
19 _FEOF           = $02
20 _FERROR         = $04
21 _FPUSHBACK      = $08
22
23 ; File table
24 .global         __filetab
25