1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +00:00
cc65/libsrc/common/_file.s
cuz 91e960f391 Removed closeallstreams
git-svn-id: svn://svn.cc65.org/cc65/trunk@1874 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-01-03 07:58:25 +00:00

38 lines
710 B
ArmAsm

;
; Ullrich von Bassewitz, 31.05.1998
;
; Data for the stdio file stream.
;
.export __filetab, _stdin, _stdout, _stderr
.include "fcntl.inc"
.include "_file.inc"
;----------------------------------------------------------------------------
; File data
.data
__filetab:
.byte 0, _FOPEN ; stdin
.byte 1, _FOPEN ; stdout
.byte 2, _FOPEN ; stderr
.repeat FOPEN_MAX - 3
.byte 0, _FCLOSED ; free slot
.endrepeat
; Standard file descriptors
_stdin:
.word __filetab + (STDIN_FILENO * _FILE_size)
_stdout:
.word __filetab + (STDOUT_FILENO * _FILE_size)
_stderr:
.word __filetab + (STDERR_FILENO * _FILE_size)