Hi all, when i am executing the below program i am geeting the error *** error 65: access violation at 0x00000000 : no 'execute/read' permission i need to know where the progrma will be actually stored and how to make my program to execute! looking forward for ur reply. Thanks.
AREA ARMex, CODE, READONLY ENTRY org 00000094h start MOV r0, #10 MOV r1, #3 ADD r0, r0, r1 END
You need to use the MAP command to tell the simulator the access rights. See: http://www.keil.com/support/docs/814.htm http://www.keil.com/support/man/docs/uv3/uv3_cm_map.htm Reinhard