1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

revert read.s

This commit is contained in:
jede 2021-03-01 22:51:59 +01:00 committed by Oliver Schmidt
parent d83e8a3f0e
commit 65d5786da5

View File

@ -8,33 +8,21 @@
.include "zeropage.inc"
.include "telestrat.inc"
.include "fcntl.inc"
;int read (int fd, void* buf, unsigned count);
.proc _read
sta ptr1 ; count
stx ptr1+1 ; count
jsr popax ; get buf
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
sta ptr2 ; in order to calculate nb of bytes read
stx ptr2+1 ;
jsr popax ; fp pointer don't care in this version
cpx #$00
bne @is_not_stdin
cmp #STDIN_FILENO
bne @is_not_stdin
; stdin
@L1:
BRK_TELEMON XRD0 ; waits until key is pressed
bcs @L1
rts
; jsr popax ; fp pointer don't care in this version
@is_not_stdin:
lda ptr1 ;
ldy ptr1+1 ;
BRK_TELEMON XFREAD ; calls telemon30 routine