mirror of
https://github.com/cc65/cc65.git
synced 2024-11-07 21:10:15 +00:00
23 lines
279 B
ArmAsm
23 lines
279 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 26.10.99
|
||
|
|
||
|
; char ReadBuff (struct tr_se);
|
||
|
|
||
|
.import gettrse
|
||
|
.export _ReadBuff
|
||
|
|
||
|
.include "../inc/diskdrv.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_ReadBuff:
|
||
|
jsr gettrse
|
||
|
sta r1L
|
||
|
stx r1H
|
||
|
jsr ReadBuff
|
||
|
stx errno
|
||
|
txa
|
||
|
rts
|