Using the ARM Assembler
does the device emulator supports ARM assembler written i a little asm file, compiled and linked to a normal app.exe written in C/C++?
I don't know i gettin' every time an access violation ( illegal instaruction ). It is fairly simple code:
in header just declaration:
extern
AREA text, CODE
EXPORT Test
Test
mov r4, #28 ; mov immediate 28 to r4 register
END There is no support in msdn or code for using ARM Assembler. Thx in advance.
The illegal instruction excception occurs also when the asm file does not have any function or code only the code block. So the structure is maybe the source.

