diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-07-15 17:57:20 +0200 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-07-15 17:57:20 +0200 |
commit | a32f257d89e9f92c8962130724ff36a4b28d2be8 (patch) | |
tree | 95cb1bdc13830cdb16542d2e9811aabbce54b47c /src/wram.asm | |
parent | 6f9b7d17ccfa4c7c7ba0e33b23a78074495adf16 (diff) |
Disassemble more from home.asm
Diffstat (limited to 'src/wram.asm')
-rw-r--r-- | src/wram.asm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/wram.asm b/src/wram.asm index 34993bc..f1cfb5f 100644 --- a/src/wram.asm +++ b/src/wram.asm @@ -394,6 +394,7 @@ wInitialA:: ; cab3 wConsole:: ; cab4 ds $1 +; used to select a sprite or a starting sprite from wOAM wOAMOffset:: ; cab5 ds $1 @@ -431,13 +432,15 @@ wFlushPaletteFlags:: ; cabf wVBlankOAMCopyToggle:: ; cac0 ds $1 -wcac1:: ; cac1 +; used by HblankWriteByteToBGMap0 +wTempByte:: ; cac1 ds $1 wcac2:: ; cac2 ds $1 -wCounterCtr:: ; cac3 +; used to increase the play time counter every four timer interrupts (60.24 Hz) +wTimerCounter:: ; cac3 ds $1 wPlayTimeCounterEnable:: ; cac4 @@ -457,7 +460,7 @@ wRNG1:: ; caca wRNG2:: ; cacb ds $1 -wCounter:: ; cacc +wRNGCounter:: ; cacc ds $1 ; the LCDC status interrupt is always disabled and this always reads as jp $0000 |