Hi guys,
I've been loking for the data in te C1 and C2 banks that will allow me to expand the battle menu window (the one where you choose from fight, XXXX, magic, item) because I want to expand some commands like X-Magic into Dualcast ans so on... All I've found is this:
Data: Absolute addressses of menu window graphics
C1/3FE0: 0000ED
C1/3FE3: 8003ED
C1/3FE6: 0007ED
C1/3FE9: 800AED
C1/3FEC: 000EED
C1/3FEF: 8011ED
C1/3FF2: 0015ED
C1/3FF5: 8018ED
Data
C1/3FF8: 571D00
C1/3FFB: 651D00
C1/3FFE: 731D00
C1/4001: 811D00
C1/4004: 8F1D00
C1/4007: 9D1D00
C1/400A: AB1D00
C1/400D: B91D00
C1/4010: AD342F LDA $2F34 (Wallpaper selection) (from C1/4034, C1/403F)
C1/4013: 2907 AND #$07 (Zero out upper nibble)
C1/4015: 8D342F STA $2F34 (Store as the wallpaper selection)
C1/4018: 0A ASL A (Double it)
C1/4019: 18 CLC
C1/401A: 6D342F ADC $2F34 (Add in the original [now A holds Wallpaper # times 3])
C1/401D: AA TAX
C1/401E: BFE23FC1 LDA $C13FE2,X (load upper byte of address of menu window graphics)
C1/4022: 8512 STA $12
C1/4024: C220 REP #$20
C1/4026: BFE03FC1 LDA $C13FE0,X (load lower two bytes of address of menu window graphics)
C1/402A: AA TAX
C1/402B: 7B TDC
C1/402C: E220 SEP #$20
C1/402E: A08003 LDY #$0380
C1/4031: 8410 STY $10
C1/4033: 60 RTS
Which looks like the background for the battle menus in general.
I also found this data for the actual menu:
Hotspot data for status menu
C3/370E: 80 00 00 01 04
C3/3713: 9059 (first command, normally "Fight")
C3/3715: 9065 (second command, normally skill goes here)
C3/3717: 9071 (third command, normally "Magic")
C3/3719: 907D (fourth command, normally "Item")
and I've messed around with it before, but no result.
Any ideas on this? Thanks