This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

error 65

Hello all

I tried to run the simple ARM assembly program.Thers no error and warming when I am building the program But When I debug and run the program I am getting the error below
*** error 65: access violation at 0x00000000 : no 'execute/read' permission

I can see in the disassembly window that my rpogram is getting stored from location 0x00000010.The location 0x00000000 to 0x0000000c doesnt have my code....I would like to know the reason why my program
is geeting stored at 0x00000010 instead of 0x00000000 ?


the code is

AREA my_code, CODE,Readonly
	Entry
	mov r0,#0xFF
	mov r2,#0x34
	End
.

looking forward for ur help