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: access violation at 0x00000000 : no 'execute/read' permission

I am using LPC2919 kit. While using the Keil debugger in debug mode, I get the following error:
error 65: access violation at 0x00000000 : no 'execute/read' permission
& hence cannot execute my code. Even a led blinking code gives the same error. Do reply if you have a solution.

Parents Reply Children
  • Hi

    I had the same problem and I resolved it by changing my image starting address to 0x0 (IROM1 in Keil under target option)

    This problem was due to my IROM1 starting address was none zero.
    As after reset PC=0x0. The debugger could not execute it, since the the code was placed at an @IROM1 was set to(which is not 0x0)

    Hope this helps