aboutsummaryrefslogtreecommitdiff
path: root/include/ppu.s
blob: dd24422f1bfb6ce211d2f7407487f0a0b26c3488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.scope PPU
    CONTROL = $2000
    MASK    = $2001
    STATUS  = $2002
    SCROLL  = $2005
    ADDRESS = $2006
    DATA    = $2007

    ;; Shadow for the PPU::CONTROL value. Touch this value instead of accessing
    ;; the PPU register directly.
    zp_control = $80
.endscope