Can anybody tell me if it is possible to execute programs using arm assembly language in the simulators?
views:
70answers:
2
+3
A:
It's not possible in the iPhone simulator because it's a i386 application without the capability to emulate another processor. As a consequence, you have to compile your iPhone app to i386 code in order to run it in the simulator.
(I can't tell you about Android.)
Codo
2010-09-27 10:04:05
This is why it's called a simulator and not an emulator.
Jasarien
2010-09-27 10:05:58
+3
A:
The Android emulator, based on QEMU, provides full ARMv5TE emulation. ARMv6/v7, VFP, and NEON are present in the current version but I think support for those is still a little flaky.
The Android SDK is a free download, so grab a copy and see if it does what you need.
fadden
2010-09-27 19:48:29