File: layer_enable.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 (39 lines) | stat: -rw-r--r-- 1,074 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
29
30
31
32
33
34
35
36
37
38
39
;
; 2020-05-02, Greg King
;
; unsigned char __fastcall__ vera_layer_enable (unsigned char layers);
; /* Display the layers that are "named" by the bit flags in layers.
; ** A value of 0b01 shows layer 0, a value of 0b10 shows layer 1,
; ** a value of 0b11 shows both layers.  Return the previous value.
; */
;

        .export         _vera_layer_enable

        .include        "cx16.inc"


mask    =       VERA::DISP::ENABLE::LAYER1 | VERA::DISP::ENABLE::LAYER0

.proc   _vera_layer_enable
        stz     VERA::CTRL              ; Use display register bank 0
        asl     a
        asl     a                       ; Shift new flags into position
        asl     a
        asl     a
        ldy     VERA::DISP::VIDEO

        eor     VERA::DISP::VIDEO
        and     #mask
        eor     VERA::DISP::VIDEO       ; Replace old flags with new flags
        sta     VERA::DISP::VIDEO

        tya
        and     #mask                   ; Get old flags
        lsr     a
        lsr     a
        lsr     a
        lsr     a
        ldx     #>$0000
        rts
.endproc