A1150E: Bad symbol<br />This typically occurs in two cases:<br />1) when the current file requires another file to be INCLUDEed to define some symbols, for example:<br />"init.s", line 2: Error: A1150E: Bad symbol<br />2 00000000 DCD EBI_CSR_0<br />typically requires a definitions file to be included, e.g:<br />INCLUDE targets/eb40.inc<br />2) when the current file requires some symbols to be IMPORTed, for example:<br />"init.s", line 4: Error: A1150E: Bad symbol<br />4 00000000 LDR r0, =||Image$$RAM$$ZI$$Limit||<br />typically requires the symbol to be imported, e.g:<br />IMPORT ||Image$$RAM$$ZI$$Limit||
|