1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-16 02:28:57 +00:00
cc65/libsrc/geos/file/writerecord.s

25 lines
317 B
ArmAsm
Raw Normal View History

;
; Maciej 'YTM/Alliance' Witkowiak
;
; 25.12.99
; char WriteRecord (char *buffer, int length);
.export _WriteRecord
.import popax
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
_WriteRecord:
sta r2L
stx r2H
jsr popax
sta r7L
stx r7H
jsr WriteRecord
stx errno
txa
rts