File: textcolor.s

package info (click to toggle)
cc65 2.19-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,268 kB
  • sloc: ansic: 117,151; asm: 66,339; pascal: 4,248; makefile: 1,009; perl: 607
file content (28 lines) | stat: -rw-r--r-- 683 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;
; Christian Groessler, 02-Apr-2019
;
; unsigned char __fastcall__ textcolor (unsigned char color);
;
; "color" value is a palette index (0..3) or COLOR_xxx value (0..3)

        .export         _textcolor
        .import         conio_color


_textcolor:
        ; move bits #0 and #1 to bits #6 and #7
        and     #3
        clc
        ror     a
        ror     a
        ror     a               ; new conio_color value
        ldx     conio_color     ; get old value
        sta     conio_color     ; store new value
        txa
        ; move bits #6 and #7 to bits #0 and #1
        clc
        rol     a
        rol     a
        rol     a
        ldx     #0
        rts