Hi,
I am using LPC1311,I was running piece of assemble code GLOBAL Reset_Handler AREA text,CODE,READONLY ENTRY
Reset_Handler
MOV R0,#4 s b s END
once i start debugging the code it gives me access violation ,pls give me sugesstion to over come this issue
Well you might want to add an infinite loop there is it doesn't plough off randomly into the weeds? The END is there for the assembler, it doesn't stop code execution.
B . ; Infinite Loop
What does the rest of the code look like?