]> git.sur5r.net Git - cc65/blob - libsrc/geos/disk/setnextfree.s
This commit was generated by cvs2svn to compensate for changes in r2,
[cc65] / libsrc / geos / disk / setnextfree.s
1
2 ;
3 ; Maciej 'YTM/Alliance' Witkowiak
4 ;
5 ; 21.12.99
6
7 ; struct tr_se SetNextFree (struct tr_se *startTS);
8
9             .import gettrse
10             .export _SetNextFree
11
12             .include "../inc/jumptab.inc"
13             .include "../inc/geossym.inc"
14         
15 _SetNextFree:
16         jsr gettrse
17         sta r3L
18         stx r3H
19         jsr SetNextFree
20         stx errno
21         lda r3L
22         ldx r3H
23         rts