Announcement

Collapse
No announcement yet.

Need help with GBA codetypes

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #16
    Raw format:
    Code:
    Easier Super Combos[See Notes]
    0802020E 2001
    
    Easier Raging Demon[See Notes]
    0802020E 2001
    0801F016 E003
    I guess this would be Codebreaker format since VBA should accept it:
    Code:
    Easier Super Combos [See Notes]
    8802020E 2001
    
    Easier Raging Demon [See Notes]
    8802020E 2001
    8801F016 E003
    I only bother with things that interest me.

    Comment


    • #17
      Thanks Demonic722

      so GBA AR v3 use same x2 offset method as AR Max does
      lee4 Does Not Accept Codes Requests !
      When lee4 asks a question it does not mean lee4 will look at your game
      *How to create and use SegaCD codes >click here<*
      >)

      Comment


      • #18
        No problem and yeah, unfortunately.
        I only bother with things that interest me.

        Comment


        • #19
          for anyone is curiosity if rom hack code work on legit codebreaker, it doesn't work.

          for VBA the RAW or patch rom will work
          Last edited by lee4; 09-23-2014, 05:36:31 PM.
          lee4 Does Not Accept Codes Requests !
          When lee4 asks a question it does not mean lee4 will look at your game
          *How to create and use SegaCD codes >click here<*
          >)

          Comment


          • #20
            Does anyone how to write subroutine pointer for CBA?
            lee4 Does Not Accept Codes Requests !
            When lee4 asks a question it does not mean lee4 will look at your game
            *How to create and use SegaCD codes >click here<*
            >)

            Comment


            • #21
              Do you mean a custom routine?

              Comment


              • #22
                Originally posted by nolberto82 View Post
                Do you mean a custom routine?
                I think so
                Last edited by lee4; 09-28-2014, 03:03:21 PM.
                lee4 Does Not Accept Codes Requests !
                When lee4 asks a question it does not mean lee4 will look at your game
                *How to create and use SegaCD codes >click here<*
                >)

                Comment


                • #23
                  You need to find a hook in IRAM and branch to WRAM. Then check that the pointer address is not zero.

                  Example:

                  Code:
                  LDR R5,=0X30001D8 //Pointer address
                  LDR R4,[R5]       //load address from pointer
                  CMP R4,#0         //make sure is not 0
                  BEQ END           //if 0 skip 
                  
                  ADD R4,#0X50      //add offset to address
                  MOV R3,#0
                  STR R3,[R4]

                  Comment


                  • #24
                    I need help convert your gba street fighter alpha 3 code

                    Easier Super Combos
                    0802020E 2001

                    pointer 1
                    02004434 08000000
                    offset
                    2020E

                    pointer 1 the offset is too big for custom routine

                    I found pointer 2

                    pointer 2
                    0201C880 08011A00
                    offset
                    E80E

                    I don't know how to actual write a custom routine for codebreaker gba
                    Last edited by lee4; 10-01-2014, 06:47:34 PM.
                    lee4 Does Not Accept Codes Requests !
                    When lee4 asks a question it does not mean lee4 will look at your game
                    *How to create and use SegaCD codes >click here<*
                    >)

                    Comment


                    • #25
                      You will need to change that value so it goes to your custom routine in ram then copy that last instruction you altered so it gets executed. Then use push on the registers you want to use and after the instructions have done it's job pop the original register values back and jump back to where you set your routine entry.
                      Spoiler Alert! Click to view...

                      THE BAD GUY!!!!!!

                      Comment


                      • #26
                        Like I said in my previous post I dont know actual write a custom routine

                        I looking for anyone do actual code or dummy code for me
                        lee4 Does Not Accept Codes Requests !
                        When lee4 asks a question it does not mean lee4 will look at your game
                        *How to create and use SegaCD codes >click here<*
                        >)

                        Comment


                        • #27
                          If Nolberto doesn't post one I can have a look for you and post the dummy code.
                          Spoiler Alert! Click to view...

                          THE BAD GUY!!!!!!

                          Comment


                          • #28
                            Originally posted by Helder View Post
                            If Nolberto doesn't post one I can have a look for you and post the dummy code.
                            Please do
                            lee4 Does Not Accept Codes Requests !
                            When lee4 asks a question it does not mean lee4 will look at your game
                            *How to create and use SegaCD codes >click here<*
                            >)

                            Comment


                            • #29
                              I haven't forgotten about you Lee, just a little short on time these last couple days. Also be warned that the code will be around 20 or so lines of code but it will work and I will explain how everything is set up so you can make changes as you see fit.
                              Spoiler Alert! Click to view...

                              THE BAD GUY!!!!!!

                              Comment


                              • #30
                                sure,

                                I'm not worried about how many lines.

                                Thanks for helping me out.
                                lee4 Does Not Accept Codes Requests !
                                When lee4 asks a question it does not mean lee4 will look at your game
                                *How to create and use SegaCD codes >click here<*
                                >)

                                Comment

                                Working...
                                X