shithub: pokered

Download patch

ref: e73f3ad27b6e8c6331dba20dd49006fcb8e5f462
parent: 6681e6816f5c539ddcf8f029fcdd0988d7fd2b86
author: Bryan Bishop <kanzure@gmail.com>
date: Tue Jan 3 12:40:08 EST 2012

Route21_h map header asm

hg-commit-id: adf71591a4bf


--- a/pokered.asm
+++ b/pokered.asm
@@ -14245,7 +14245,33 @@
 
     dw $4e9a ; objects
 
-INCBIN "baserom.gbc",$54e9a,$3166
+INCBIN "baserom.gbc",$54e9a,$54fff - $54e9a
+
+Route21_h: ; 0x54fff to 0x55021 (34 bytes) (id=32)
+    db $00 ; tileset
+    db $2d, $0a ; dimensions (y, x)
+    dw $506d, $5f04, $5eeb ; blocks, texts, scripts
+    db NORTH | SOUTH ; connections
+
+    ; connections data
+
+    db $00 ; some map
+    dw $4339, $c6eb ; pointers (connected, current) (strip)
+    db $0a, $0a ; bigness, width
+    db $11, $00 ; alignments (y, x)
+    dw $c779 ; window
+
+    db $08 ; some map
+    dw $4069, $c9eb ; pointers (connected, current) (strip)
+    db $0a, $0a ; bigness, width
+    db $00, $00 ; alignments (y, x)
+    dw $c6f9 ; window
+
+    ; end connection data
+
+    dw $5021 ; objects
+
+INCBIN "baserom.gbc",$55021,$2fdf
 
 SECTION "bank16",DATA,BANK[$16]
 INCBIN "baserom.gbc",$58000,$4000
--