mirror of
https://github.com/cc65/cc65.git
synced 2025-02-05 20:31:53 +00:00
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
|