Adding files for telemon30

This commit is contained in:
jede
2016-12-14 21:22:10 +01:00
parent bc94d53514
commit 252e4afb9c
36 changed files with 1899 additions and 55 deletions

31
libsrc/telemon30/_read.s Normal file
View File

@@ -0,0 +1,31 @@
;
; Ullrich von Bassewitz, 2003-04-13
;
;
.export _read
.import popax
.importzp ptr1, ptr2, ptr3, tmp1, tmp2
.include "telemon30.inc"
; int read (int fd, void* buf, unsigned count);
.proc _read
;jsr popax ; fp pointer don't care
sta tmp1 ; count
stx tmp2 ; count
jsr popax ; get buf
;lda #$00
;ldx #$a0
sta PTR_READ_DEST
stx PTR_READ_DEST+1
lda tmp1 ;
ldy tmp2 ;
BRK_TELEMON XFREAD
rts
.endproc