1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-27 09:33:42 +00:00
cc65/libsrc/sym1/write.s

50 lines
1.0 KiB
ArmAsm
Raw Normal View History

;
2021-06-06 21:28:03 -05:00
; Wayne Parham (wayne@parhamdata.com)
;
2021-06-06 21:28:03 -05:00
; int write (int fd, const void* buf, int count);
;
.include "sym1.inc"
.import popax, popptr1
.importzp ptr1, ptr2, ptr3, tmp1
.export _write
.proc _write
2021-06-06 21:28:03 -05: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 outch
dec ptr2+1
beq done
outch : ldy #0
lda (ptr1),y
jsr OUTCHR ; Send character using Monitor call
cmp #$0A
bne next
lda #$0D ; If it is LF, add CR
jsr OUTCHR
next: inc ptr1
bne begin
inc ptr1+1
jmp begin
done: lda ptr3
ldx ptr3+1
rts ; Return count
2021-06-06 21:28:03 -05:00
.endproc