On Feb 4, 2008 9:18 PM, Steve Moseley <[EMAIL PROTECTED]> wrote: > It has only happened now that my app has grown in size, I now have two native > code PNOs and eight segments for my 68k code. Why some function calls would > jump into the middle of some code in the wrong segment, while all other calls > across and within segments ok, doesn't make sense to me.
Are you sure that every use of those functions has a proper function declaration with the appropriate attribute? The compiler needs to know that it's calling a different segment at the time it generates the object file, so missing those attributes will mean that you have code that jumps to the wrong location. -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/
