Files
cc65/libsrc/c64/cpeekcol.s
2017-06-17 03:46:53 +02:00

22 lines
228 B
ArmAsm

.export _cpeekcol
.export _cpeekcolxy
.import _gotoxy
.include "c64.inc"
.segment "CODE"
_cpeekcolxy:
jsr _gotoxy ; Set cursor
_cpeekcol:
ldy CURS_X
lda (CRAM_PTR),y ; get color
and #$0f
ldx #0
rts