diff options
author | Daniel Harding <33dannye@gmail.com> | 2018-07-18 17:20:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-18 17:20:30 -0500 |
commit | 783f5fe610c69006742b4976ab4f183f39512d89 (patch) | |
tree | cdbe7ea8c0430e64a89cad5e93b250f6291677c9 /src/constants/hardware_constants.asm | |
parent | 169dc3d8fdd5603efd1766acd9ad1b8c23093e7f (diff) | |
parent | eb87f849ff7a0ec07a27035fb183234ed04ef540 (diff) |
Merge pull request #46 from xCrystal/master
Finish bank 0 disasm ; Text engine and charmaps
Diffstat (limited to 'src/constants/hardware_constants.asm')
-rw-r--r-- | src/constants/hardware_constants.asm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/constants/hardware_constants.asm b/src/constants/hardware_constants.asm index a93e250..fe2731f 100644 --- a/src/constants/hardware_constants.asm +++ b/src/constants/hardware_constants.asm @@ -2,8 +2,6 @@ GBC EQU $11 -LY_VBLANK EQU 145 - ; MBC3 MBC3SRamEnable EQU $0000 MBC3RomBank EQU $2000 @@ -79,11 +77,12 @@ rNR50 EQU $ff24 ; Channel control / ON-OFF / Volume (R/W) rNR51 EQU $ff25 ; Selection of Sound output terminal (R/W) rNR52 EQU $ff26 ; Sound on/off rLCDC EQU $ff40 ; LCD Control (R/W) -LCDC_ON EQU 7 +LCDC_ON EQU 7 rSTAT EQU $ff41 ; LCDC Status (R/W) rSCY EQU $ff42 ; Scroll Y (R/W) rSCX EQU $ff43 ; Scroll X (R/W) rLY EQU $ff44 ; LCDC Y-Coordinate (R) +LY_VBLANK EQU 145 rLYC EQU $ff45 ; LY Compare (R/W) rDMA EQU $ff46 ; DMA Transfer and Start Address (W) rBGP EQU $ff47 ; BG Palette Data (R/W) - Non CGB Mode Only |