FreeCalypso > hg > freecalypso-sw
view gsm-fw/libiram/bcopy_words.S @ 867:c4da570dca83
int_osx_receive_prim() in gsm-fw/gpf/osx/osx.c: there was an error in the
reconstruction of this function from disassembly in the logic that implements
special handling for MPHC_RXLEV_REQ messages.
The code is now fixed to properly match what the binary object version does;
with this fix the firmware now performs the power measurement phase correctly
and the initial network registration succeeds.
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 16 May 2015 06:34:09 +0000 |
parents | cbc49d533b7d |
children |
line wrap: on
line source
/* * bcopy_aligned_words() takes the same arguments as BSD bcopy(), * but requires both addresses and the count to be 32-bit word-aligned, * and assumes that the source and destination memory regions * do not overlap. Furthermore, the count is expected to be non-zero. * * Arguments: * * R0: source address (word-aligned) * R1: destination address (ditto) * R2: byte count (must be a multiple of 4) */ .text .code 32 .globl bcopy_aligned_words bcopy_aligned_words: 1: ldr r3, [r0], #4 str r3, [r1], #4 subs r2, r2, #4 bhi 1b bx lr