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

Hi there,

Iam getting error 65 message --- cantest.c(30): error: #65: expected a ";"

when I add the following line of code


unsigned  int StandardFilter[2] _at_ 0xE0038000;

Kindly give me your suggestions.

Parents
  • Change -

    Stack_Size   EQU  (UND_Stack_Size + SVC_Stack_Size +  ABT_Stack_Size + /
    FIQ_Stack_Size + IRQ_Stack_Size + USR_Stack_Size)
    


    to

    Stack_Size   EQU  (UND_Stack_Size + SVC_Stack_Size +  ABT_Stack_Size + \ 
    FIQ_Stack_Size + IRQ_Stack_Size + USR_Stack_Size)
    

    or make Stack_Size EQU 0x00000400

    If you still have problems you may not be able to locate variables at specific locations in the evaluation version (this should be easy enough to get around in the eval version. The real version certianly does support this with no limitation)

Reply
  • Change -

    Stack_Size   EQU  (UND_Stack_Size + SVC_Stack_Size +  ABT_Stack_Size + /
    FIQ_Stack_Size + IRQ_Stack_Size + USR_Stack_Size)
    


    to

    Stack_Size   EQU  (UND_Stack_Size + SVC_Stack_Size +  ABT_Stack_Size + \ 
    FIQ_Stack_Size + IRQ_Stack_Size + USR_Stack_Size)
    

    or make Stack_Size EQU 0x00000400

    If you still have problems you may not be able to locate variables at specific locations in the evaluation version (this should be easy enough to get around in the eval version. The real version certianly does support this with no limitation)

Children