diff options
author | yenatch <yenatch@gmail.com> | 2013-09-07 15:26:52 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-07 15:26:52 -0400 |
commit | ed2063276a3ca79ed8c2486c5e64c3d688165c80 (patch) | |
tree | 19c898416fe106ccfce2ad7ac60f723c7f3f92ee | |
parent | eaaf71944023b66fb44eed164521bc7a0d2cda66 (diff) |
add a menudata2 header in std scripts
thats it for std incbins
-rw-r--r-- | main.asm | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -75059,7 +75059,7 @@ UnknownScript_0xbcdcd: ; 0xbcdcd UnknownScript_0xbcde0: ; 0xbcde0 3writetext $6c, $47e3 special $0050 - loadmenudata $4e54 + loadmenudata MenuDataHeader_0xbce54 interpretmenu2 writebackup if_equal $1, UnknownScript_0xbcdf7 @@ -75116,7 +75116,23 @@ UnknownScript_0xbce4d: ; 0xbce4d end ; 0xbce54 -INCBIN "baserom.gbc", $bce54, $bce7f - $bce54 + +MenuDataHeader_0xbce54: ; 0xbce54 + db $40 ; flags + db 04, 00 ; start coords + db 11, 15 ; end coords + dw MenuData2_0xbce5c + db 1 ; default option +; 0xbce5c + +MenuData2_0xbce5c: ; 0xbce5c + db $80 ; flags + db 3 ; items + db " 50 : ¥1000@" + db "500 : ¥10000@" + db "CANCEL@" +; 0xbce7f + UnknownScript_0xbce7f: ; 0xbce7f faceplayer @@ -75439,6 +75455,8 @@ ElmPhoneScript2: ; 0xbd081 3writetext BANK(ElmPhoneUnusedText), ElmPhoneUnusedText specialphonecall $0000 end +; bd0d0 + INCBIN "baserom.gbc", $bd0d0, $be699-$bd0d0 |