• ADRP command getting crashed.
    Writing an assembly code and want to make the ASLR ( Address Space Layout Randomisation) complaint code. armb8le platform (64 bit) Previously was using LDR command to load the fork function as below...
  • instruction equivalent to movw,movt with position independent and PC relocatable.
    Using movw and movt to load a label address into a register in Arm 32 architecture. but this is not position independent code. movw r1, #:lower16:ASM_NAME(forkx) movt r1, #:upper16:ASM_NAME(forkx) ...
  • Loads and Stores for unaligned memory addresses
    Hi, I am trying to write a code using Neon instructions for an iOS app, based on a previous code that has been optimized with SSE instructions for a desktop app. The SSE code has memory alignment...
  • FPGA Prescale register address incorrect in MPS2(+) software header file
    The FPGA prescaler register address is incorrectly defined in the header file SMM_MPS2.h This file is used in all Arm test software for MPS2, such as selftest, shieldtest, demo etc. The same header...
  • Incorrect Thumb operand strange behaviour
    Hello, I am trying to compile some asm code with operand unable to be used as immediate, but compiler does not generate error but produce strange binary code, hard to detect erroneous code. The source...