Re: Translator problem?
- Posted by mattlewis (admin) May 01, 2009
- 955 views
LarryMiller said...
jeremy said...
LarryMiller said...
Neither contains the symbol init_literal0_
Hm. Oh, you want to search for init_literal0, i.e. without the trailing _ ... That is added by the C compiler (I don't know the internals as to why). But the function name should be init_literal0.
The symbol init_literal0 is found as a function (or procedure) at the very end of init-.c and the beginning of init-0.c It is not found anywhere else.
That's exactly where it should be. The trailing underscore shows what the calling convention is. The trailing underscore is something Watcom does when it passes parameters in registers. This is the default convention for Watcom.
Matt