Hi,
I installed DS-5 64-bit version in windows, but i received 32-bit code which is running on AArch32 without any issue , and it's not running on my machine with AArch64 DS-5, is there any setting which i can do to run the same code without any changes? or do i need to do any code changes in 32-bit code to run on 64-bit DS-5?
Thanks,
Divya.
So you are trying to build code to run on the A53 FVP.
Are you building using the assembler (ie files full of ASM code) or are you using inline assemble in C like this?
void func()
{
_asm("str x0,[x1]");
}
What tool-chain are you using, gcc, armcc, clang?