]> git.sur5r.net Git - cc65/blob - libsrc/geos/disk/putblock.s
This commit was generated by cvs2svn to compensate for changes in r2,
[cc65] / libsrc / geos / disk / putblock.s
1
2 ;
3 ; Maciej 'YTM/Alliance' Witkowiak
4 ;
5 ; 21.12.99
6
7 ; char PutBlock (struct tr_se *myTS, char *buffer);
8
9             .import popax
10             .import gettrse
11             .export _PutBlock
12
13             .include "../inc/jumptab.inc"
14             .include "../inc/geossym.inc"
15         
16 _PutBlock:
17         sta r4L
18         stx r4H
19         jsr popax
20         jsr gettrse
21         sta r1L
22         stx r1H
23         jsr PutBlock
24         stx errno
25         txa
26         rts