From 4092ef120744a3eecb30f5b3ad3a5630d558db40 Mon Sep 17 00:00:00 2001 From: Zumi Daxuya Date: Thu, 10 Dec 2020 13:43:06 +0700 Subject: Disassemble G/S intro --- ram/hram.asm | 1 + ram/wram.asm | 27 ++++++++++++++++++++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) (limited to 'ram') diff --git a/ram/hram.asm b/ram/hram.asm index 4acfbfa..8f86a2a 100644 --- a/ram/hram.asm +++ b/ram/hram.asm @@ -124,6 +124,7 @@ ENDU ds 3 ; TODO +hCurSpriteYCoord:: hFFC0:: ds 1 ds 6 diff --git a/ram/wram.asm b/ram/wram.asm index da6d364..f579aa6 100644 --- a/ram/wram.asm +++ b/ram/wram.asm @@ -89,6 +89,10 @@ UNION wTileMapBackup:: ds SCREEN_HEIGHT * SCREEN_WIDTH +NEXTU + +wSpriteAnimDict:: ds 10 * 2 ; NUM_SPRITEANIMDICT_ENTRIES * 2 + NEXTU ds 1 @@ -115,7 +119,10 @@ wSpriteAnimIDBuffer:: db ds 6 +wGlobalAnimYOffset:: wc4c7:: db + +wGlobalAnimXOffset:: wc4c8:: db ds 7 @@ -229,13 +236,31 @@ wca0a:: ds 1 ds 5 ; TODO +wIntroJumptableIndex:: wca10:: ds 1 + +UNION +wIntroBGMapPointer:: ds 2 ; ca11 +NEXTU wca11:: ds 1 wca12:: ds 1 +ENDU + +UNION +wIntroTilemapPointer:: ds 2 ; ca13 +NEXTU wca13:: ds 1 wca14:: ds 1 +ENDU + +wIntroTilesPointer:: ds 2 ; ca15 + +wIntroFrameCounter1:: ds 1 ; ca17 +wIntroFrameCounter2:: ds 1 ; ca18 + +wIntroSpriteStateFlag:: ds 1 ; ca19 - ds $22 ; TODO + ds $1d ; TODO wca37:: ds 1 wca38:: ds 1 -- cgit v1.2.3