]> git.sur5r.net Git - cc65/blob - libsrc/cbm/dir.inc
Forgot a cast, sorry
[cc65] / libsrc / cbm / dir.inc
1 ;
2 ; Internal include file, do not use directly.
3 ; Written by Ullrich von Bassewitz. Based on C code by Groepaz.
4 ;
5
6
7
8 ;------------------------------------------------------------------------------
9 ; Data structures
10
11 .struct DIR
12     fd          .word
13     off         .word
14     name        .byte   16+1
15 .endstruct
16
17
18 ;------------------------------------------------------------------------------
19 ; C callable functions
20
21         .global _opendir
22         .global _closedir
23         .global _readdir
24         .global _seekdir
25         .global _telldir
26         .global _rewinddir
27         .global __dirread
28         .global __dirread1
29
30