• Fichier: _file.inc
  • Path: /invader_nes/InvaderNES/build/cc65/asminc/_file.inc
  • File size: 468 bytes
  • MIME-type: text/plain
  • Charset: utf-8
 
Retour
;
; _file.inc
;
; (C) Copyright 2002 Ullrich von Bassewitz (uz@cc65.org)
;

; Assembler include file that makes the constants and structures in _file.h
; available for asm code.

; Struct _FILE
.struct _FILE
        f_fd        .byte
        f_flags     .byte
        f_pushback  .byte
.endstruct

; Flags field
_FCLOSED        = $00
_FOPEN          = $01
_FEOF           = $02
_FERROR         = $04
_FPUSHBACK      = $08

; File table
.global         __filetab