summaryrefslogtreecommitdiff
path: root/wram.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-13 13:05:05 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-13 15:18:28 -0400
commite239aa4aba89156ac52b2af26d1bbf084ee88e75 (patch)
tree28e1dd069acc5c1a88662ce275f7102da68f3c4e /wram.asm
parent4fb008844030283ad34cb0802b088b4dd7c9891c (diff)
Disassemble the final English debug ROM
Diffstat (limited to 'wram.asm')
-rw-r--r--wram.asm43
1 files changed, 43 insertions, 0 deletions
diff --git a/wram.asm b/wram.asm
index cc278956c..5d6c41688 100644
--- a/wram.asm
+++ b/wram.asm
@@ -1177,6 +1177,49 @@ wccb5:: ds 3
wccb8:: ds 1
wccb9:: ds 1
wccba:: ds 102
+
+if DEF(_DEBUG)
+NEXTU
+; debug room
+
+; debug room RTC values
+wDebugRoomRTCSec:: db
+wDebugRoomRTCMin:: db
+wDebugRoomRTCHour:: db
+wDebugRoomRTCDay:: dw
+wDebugRoomRTCCurSec:: db
+wDebugRoomRTCCurMin:: db
+wDebugRoomRTCCurHour:: db
+wDebugRoomRTCCurDay:: dw
+
+; debug room paged values
+wDebugRoomCurPage:: db
+wDebugRoomCurValue:: db
+wDebugRoomAFunction:: dw
+wDebugRoomStartFunction:: dw
+wDebugRoomSelectFunction:: dw
+wDebugRoomAutoFunction:: dw
+wDebugRoomPageCount:: db
+wDebugRoomPagedValuesPtr:: dw
+
+wDebugRoomROMChecksum:: dw
+wDebugRoomCurChecksumBank:: db
+
+UNION
+; debug room new item values
+wDebugRoomItemID:: db
+wDebugRoomItemQuantity:: db
+NEXTU
+; debug room new pokemon values
+wDebugRoomMon:: box_struct wDebugRoomMon
+wDebugRoomMonBox:: db
+NEXTU
+; debug room GB ID values
+wDebugRoomGBID:: dw
+ENDU
+
+endc
+
ENDU