mirror of
https://github.com/cc65/cc65.git
synced 2024-11-15 11:05:56 +00:00
43 lines
935 B
ArmAsm
43 lines
935 B
ArmAsm
;
|
|
; jede jede@oric.org 2017-01-22
|
|
;
|
|
|
|
.export _read
|
|
|
|
.import popax
|
|
|
|
.include "zeropage.inc"
|
|
.include "telestrat.inc"
|
|
|
|
;int read (int fd, void* buf, unsigned count);
|
|
|
|
.proc _read
|
|
|
|
sta ptr1 ; count
|
|
stx ptr1+1 ; count
|
|
jsr popax ; get buf
|
|
|
|
sta PTR_READ_DEST
|
|
stx PTR_READ_DEST+1
|
|
sta ptr2 ; in order to calculate nb of bytes read
|
|
stx ptr2+1
|
|
|
|
jsr popax ; get FD
|
|
|
|
tax ; send FD to X
|
|
|
|
lda ptr1
|
|
ldy ptr1+1
|
|
BRK_TELEMON XFREAD
|
|
; compute nb of bytes read
|
|
lda PTR_READ_DEST+1
|
|
sec
|
|
sbc ptr2+1
|
|
tax
|
|
lda PTR_READ_DEST
|
|
sec
|
|
sbc ptr2
|
|
; here A and X contains number of bytes read
|
|
rts
|
|
.endproc
|