mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
93ce19da63
git-svn-id: svn://svn.cc65.org/cc65/trunk@3460 b7a2c559-68d2-44c3-8de9-860c34a00d81
17 lines
294 B
PHP
17 lines
294 B
PHP
;
|
|
; Oliver Schmidt, 30.12.2004
|
|
;
|
|
; File descriptor management for the POSIX I/O routines
|
|
;
|
|
|
|
.struct FD
|
|
REF_NUM .byte
|
|
FLAGS .byte
|
|
BUFFER .addr
|
|
.endstruct
|
|
|
|
.global fdtab
|
|
.global getfd
|
|
|
|
MAX_FDS = 8
|