2021-05-09 21:34:53 +00:00
|
|
|
;
|
2021-06-07 02:28:03 +00:00
|
|
|
; Wayne Parham (wayne@parhamdata.com)
|
2021-05-09 21:34:53 +00:00
|
|
|
;
|
2021-06-16 21:24:26 +00:00
|
|
|
; int __fastcall__ read (int fd, void* buf, unsigned count);
|
2021-05-09 21:34:53 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
.include "sym1.inc"
|
|
|
|
|
|
|
|
.import popax, popptr1
|
|
|
|
.importzp ptr1, ptr2, ptr3
|
|
|
|
|
|
|
|
.export _read
|
|
|
|
|
|
|
|
.proc _read
|
2021-06-07 02:28:03 +00:00
|
|
|
|
2021-05-09 21:34:53 +00:00
|
|
|
sta ptr3
|
|
|
|
stx ptr3+1 ; Count in ptr3
|
|
|
|
inx
|
|
|
|
stx ptr2+1 ; Increment and store in ptr2
|
|
|
|
tax
|
|
|
|
inx
|
|
|
|
stx ptr2
|
|
|
|
jsr popptr1 ; Buffer address in ptr1
|
|
|
|
jsr popax
|
|
|
|
|
|
|
|
begin: dec ptr2
|
|
|
|
bne getch
|
|
|
|
dec ptr2+1
|
|
|
|
beq done ; If buffer full, return
|
|
|
|
|
|
|
|
getch: jsr INTCHR ; Get character using Monitor ROM call
|
2021-06-09 15:23:42 +00:00
|
|
|
jsr OUTCHR ; Echo it
|
2021-06-12 11:28:53 +00:00
|
|
|
and #$7F ; Clear top bit
|
2021-06-10 21:07:39 +00:00
|
|
|
cmp #$07 ; Check for '\a'
|
|
|
|
bne chkcr ; ...if BEL character
|
|
|
|
jsr BEEP ; Make beep sound
|
|
|
|
chkcr: cmp #$0D ; Check for '\r'
|
|
|
|
bne putch ; ...if CR character
|
|
|
|
lda #$0A ; Replace with '\n'
|
2021-06-16 21:24:26 +00:00
|
|
|
jsr OUTCHR ; and echo it
|
2021-05-09 21:34:53 +00:00
|
|
|
|
|
|
|
putch: ldy #$00 ; Put char into return buffer
|
|
|
|
sta (ptr1),y
|
|
|
|
inc ptr1 ; Increment pointer
|
|
|
|
bne begin
|
|
|
|
inc ptr1+1
|
|
|
|
bne begin
|
|
|
|
|
|
|
|
done: lda ptr3
|
|
|
|
ldx ptr3+1
|
2022-04-17 14:06:22 +00:00
|
|
|
rts ; Return count
|
2021-06-07 02:28:03 +00:00
|
|
|
|
2021-05-09 21:34:53 +00:00
|
|
|
.endproc
|