You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.if CODESEG = 1
|
|
.segment "CODE1"
|
|
.endif
|
|
|
|
.export _putchar
|
|
|
|
ECHO = $FFEF ; print character from A
|
|
|
|
_putchar:
|
|
;ORA $80
|
|
JMP ECHO
|