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
  • "DO NOT convert your 'C' files to ASM unless you need to do some serious optomizing." (my emphasis)

    Even then, there is no need to convert your 'C' source files to assembler sources files: Just get the compiler to include the generated assembler in its Listing file.

    Then, if you do find parts that need hand optimising, write them properly in assembler as assembler modules and call them from 'C' - do NOT mess about with inline assembler!

Reply
  • "DO NOT convert your 'C' files to ASM unless you need to do some serious optomizing." (my emphasis)

    Even then, there is no need to convert your 'C' source files to assembler sources files: Just get the compiler to include the generated assembler in its Listing file.

    Then, if you do find parts that need hand optimising, write them properly in assembler as assembler modules and call them from 'C' - do NOT mess about with inline assembler!

Children
No data