Unknown armasm error

Note: This was originally posted on 21st October 2010 at http://forums.arm.com

I am using RVCT 4.1 build 462, and I have seen this armasm error:

A1903E: Line not seen in first pass; cannot be assembled

Do you have any idea what this means?



Thanks,

-A
Parents
  • Note: This was originally posted on 25th October 2010 at http://forums.arm.com

    I saw this once when porting some old code that used a lot of defines.  Not entirely sure what it means, but I got round it like this

    Before:
      IF :DEF:MY_DEF
      ELSE
    MY_DEF     EQU 4
      ENDIF


    Fix:
      IF :LNOT: :DEF: MY_DEF
    MY_DEF     EQU 4
      ENDIF
Reply
  • Note: This was originally posted on 25th October 2010 at http://forums.arm.com

    I saw this once when porting some old code that used a lot of defines.  Not entirely sure what it means, but I got round it like this

    Before:
      IF :DEF:MY_DEF
      ELSE
    MY_DEF     EQU 4
      ENDIF


    Fix:
      IF :LNOT: :DEF: MY_DEF
    MY_DEF     EQU 4
      ENDIF
Children
No data
More questions in this forum