mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
18 lines
288 B
ArmAsm
18 lines
288 B
ArmAsm
;
|
|
; 2017-12-27, Groepaz
|
|
;
|
|
; unsigned char cpeekcolor (void);
|
|
;
|
|
|
|
.export soft80mono_cpeekcolor
|
|
|
|
.include "c64.inc"
|
|
.include "soft80.inc"
|
|
|
|
.segment "CODE"
|
|
|
|
soft80mono_cpeekcolor:
|
|
lda CHARCOLOR
|
|
ldx #0
|
|
rts
|