mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
c15fd58d3b
git-svn-id: svn://svn.cc65.org/cc65/trunk@2707 b7a2c559-68d2-44c3-8de9-860c34a00d81
44 lines
834 B
ArmAsm
44 lines
834 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 17.06.1998
|
|
;
|
|
; int _fdesc (void);
|
|
; /* Find a free descriptor slot */
|
|
|
|
|
|
.export __fdesc
|
|
.import return0
|
|
|
|
.include "stdio.inc"
|
|
.include "_file.inc"
|
|
|
|
.proc __fdesc
|
|
|
|
ldy #0
|
|
lda #_FOPEN
|
|
Loop: and __filetab + _FILE::f_flags,y ; load flags
|
|
beq Found ; jump if closed
|
|
.repeat .sizeof(_FILE)
|
|
iny
|
|
.endrepeat
|
|
cpy #(FOPEN_MAX * .sizeof(_FILE)) ; Done?
|
|
bne Loop
|
|
|
|
; File table is full
|
|
|
|
jmp return0
|
|
|
|
; Free slot found, get address
|
|
|
|
Found: tya ; Offset
|
|
clc
|
|
adc #<__filetab
|
|
ldx #>__filetab ; High byte
|
|
bcc @L1 ; Jump if no overflow
|
|
inx ; Bump high byte
|
|
@L1: rts
|
|
|
|
.endproc
|
|
|
|
|
|
|