1
0
mirror of https://github.com/cc65/cc65.git synced 2025-03-03 09:32:33 +00:00
cc65/libsrc/sym1/putchar.s

24 lines
683 B
ArmAsm
Raw Normal View History

; ---------------------------------------------------------------------------
; putchar.s
;
; for Sym-1
;
; Wayne Parham
;
; wayne@parhamdata.com
; ---------------------------------------------------------------------------
.include "sym1.inc"
.export _putchar
.segment "CODE"
.proc _putchar: near
; ---------------------------------------------------------------------------
jsr OUTCHR ; Send character using Monitor ROM call
lda #$00 ;
ldx #$00 ;
rts ; Return 0000
; ---------------------------------------------------------------------------
.endproc