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

What does this warning mean?

When I 74compile my project I get these errors:
****************************************
*** WARNING L1: UNRESOLVED EXTERNAL SYMBOL
SYMBOL: ?C_STARTUP
MODULE: gf.obj (GF)
*** WARNING L1: UNRESOLVED EXTERNAL SYMBOL
SYMBOL: ?C?COPY
MODULE: gf.obj (GF)
*** WARNING L2: REFERENCE MADE TO UNRESOLVED EXTERNAL
SYMBOL: ?C?COPY
MODULE: gf.obj (GF)
ADDRESS: 0027H
******** WARNING L1: UNRESOLVED EXTERNAL SYMBOL
SYMBOL: ?C_STARTUP
MODULE: gf.obj (GF)
*** WARNING L1: UNRESOLVED EXTERNAL SYMBOL
SYMBOL: ?C?COPY
MODULE: gf.obj (GF)
*** WARNING L2: REFERENCE MADE TO UNRESOLVED EXTERNAL
SYMBOL: ?C?COPY
MODULE: gf.obj (GF)
ADDRESS: 0027H
*******************************************
What does this mean and where is the problem?

Thanks

Parents
  • "The problem is that I am using startup.a51 and init.a51"

    No, that is not the problem.

    "so I think in this case I should translate all c files to src"

    No: this is precisely what is causing your problem - as I explained earlier.

    You use the SRC directive only if you are using inline assembler - and, as I said before, my opinion is that inline assembler is best avoided.

Reply
  • "The problem is that I am using startup.a51 and init.a51"

    No, that is not the problem.

    "so I think in this case I should translate all c files to src"

    No: this is precisely what is causing your problem - as I explained earlier.

    You use the SRC directive only if you are using inline assembler - and, as I said before, my opinion is that inline assembler is best avoided.

Children