Changing text pointers?
#4
(09-24-2012, 11:22 AM)Marketa Lazarova Wrote: I imagine that the 'high' bytes have something to do with this, but they don't seem to point to parts of the ROM in the same fashion as low bytes, and the STA and STX codes may also have something to do it. I think that if I can figure those out, I may be able to do this.

The high byte is the bank. STA means "store in register A". Same goes for STX "Store in register X". See those as temporary variables. So the part you need to change would be this given you move the pointers to 310200:

Code:
C3/8308: A2 00 00     LDX #$0000      (pointers low & medium byte)
C3/830B: 86 E7        STX $E7
C3/830D: A2 00 64     LDX #$6400      (descriptions low & medium byte)
C3/8310: 86 EB        STX $EB
C3/8312: A9 F1        LDA #$F1        (pointers bank)
C3/8314: 85 E9        STA $E9
C3/8316: A9 ED        LDA #$ED        (descriptions bank)
C3/8318: 85 ED        STA $ED



Reply


Messages In This Thread
Changing text pointers? - by Marketa Lazarova - 09-23-2012, 12:42 PM
RE: Changing text pointers? - by madsiur - 09-23-2012, 07:07 PM
RE: Changing text pointers? - by Marketa Lazarova - 09-24-2012, 11:22 AM
RE: Changing text pointers? - by madsiur - 09-24-2012, 07:48 PM
RE: Changing text pointers? - by Marketa Lazarova - 09-24-2012, 08:26 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with battle animation graphics pointers tomilho 1 1,384 01-11-2024, 02:19 AM
Last Post: C-Dude
  Formation Event Pointers PowerPanda 4 3,313 05-01-2021, 11:14 AM
Last Post: PowerPanda
  current music pointers CzarMalboro 8 6,685 08-15-2019, 06:27 PM
Last Post: CzarMalboro
  PS1 Text Changes? Binarynova 2 3,724 08-31-2018, 06:23 PM
Last Post: PowerPanda
  Where the Save Text pointers ?? q8fft 2 3,593 07-09-2017, 02:48 AM
Last Post: q8fft
  OAM tables/list/pointers and quantum mathematics Catone 0 2,514 03-25-2015, 07:47 AM
Last Post: Catone
  Battle command pointers and general question Catone 14 17,535 04-04-2013, 04:40 PM
Last Post: madsiur

Forum Jump:


Users browsing this thread: 1 Guest(s)