2017-01-31 21:09:14 +00:00
|
|
|
;
|
|
|
|
; jede jede@oric.org 2017-01-22
|
|
|
|
;
|
|
|
|
|
2017-01-31 21:20:19 +00:00
|
|
|
.export _read
|
|
|
|
|
|
|
|
.import popax
|
|
|
|
|
|
|
|
.include "zeropage.inc"
|
|
|
|
.include "telestrat.inc"
|
2017-01-31 21:09:14 +00:00
|
|
|
|
2017-02-01 23:11:11 +00:00
|
|
|
;int read (int fd, void* buf, unsigned count);
|
2017-01-31 21:09:14 +00:00
|
|
|
|
|
|
|
.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 ; fp pointer don't care in this version
|
|
|
|
|
|
|
|
lda ptr1 ;
|
|
|
|
ldy ptr1+1 ;
|
|
|
|
BRK_TELEMON XFREAD ; calls telemon30 routine
|
|
|
|
; 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
|
|
|
|
|
|
|
|
|