]> git.sur5r.net Git - cc65/blob - libsrc/geos-common/disk/setnextfree.s
Normalized coding style.
[cc65] / libsrc / geos-common / disk / setnextfree.s
1 ;
2 ; Maciej 'YTM/Alliance' Witkowiak
3 ;
4 ; 21.12.99
5
6 ; struct tr_se SetNextFree (struct tr_se *startTS);
7
8             .import __oserror
9             .import gettrse
10             .export _SetNextFree
11
12             .include "jumptab.inc"
13             .include "geossym.inc"
14         
15 _SetNextFree:
16         jsr gettrse
17         sta r3L
18         stx r3H
19         jsr SetNextFree
20         stx __oserror
21         lda r3L
22         ldx r3H
23         rts