Results 1 to 9 of 9

Thread: Re-Making Teleport code for Acww 1.0

Threaded View

  1. #7

    Default

    I never knew you could do that XD...so this basically tells you the difference between byte sizes..interesting I guess that:

    Code:
    adr r0, XandYCoords
     
    ldr r1, [r0]
    ldr r2, [r0,#4]
     
    str r1, [r0]
    str r2, [r0, #4]
    Adding #4 makes sense now since the difference between words are #4, but what about this line:

    Code:
    XandYCoords:
    .long 0x00000, 0x00000
    Why only write .long 0x00000 (with five zeroes) and not 8?
    Last edited by Demonic722; 08-02-2012 at 05:28 AM.
    3DS Friend Code: 4699-6293-3106

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •