aboutsummaryrefslogtreecommitdiff
path: root/include/ppu.s
blob: 78828090337f14b60707cb55c6e01f86d0a66b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.scope PPU
    m_control = $2000
    m_mask    = $2001
    m_status  = $2002
    m_scroll  = $2005
    m_address = $2006
    m_data    = $2007

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

    ;; Shadow for the PPU::MASK value. Touch this value instead of accessing the
    ;; PPU register directly.
    zp_mask = $81
.endscope