Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!rutgers!sri-unix!sri-spam!ames!ucbcad!ucbvax!DMZRZU71.BITNET!schoepf From: schoepf@DMZRZU71.BITNET Newsgroups: comp.sys.atari.st Subject: Lattice C basepage Message-ID: <8706261648.AA15783@ucbvax.Berkeley.EDU> Date: Fri, 26-Jun-87 13:21:20 EDT Article-I.D.: ucbvax.8706261648.AA15783 Posted: Fri Jun 26 13:21:20 1987 Date-Received: Sat, 27-Jun-87 09:59:42 EDT Sender: daemon@ucbvax.BERKELEY.EDU Distribution: world Organization: The ARPA Internet Lines: 15 In Digest #250 ihnp4!ihuxy!nowlin@ucbvax.Berkeley.EDU (Jerry Nowlin) writes: > I've poked around all over the place below the main() entry point in > Lattice programs and can't locate the basepage. Megamax and Alcyon give Lattice C 3.03 uses an extern _basepage. You find it by looking at the .MAP file the linker produces if you specify -list on its command line. (this is the default anyway) It is referenced in the first few instructions of the STARTUP module, so you will find it if you look at the very beginning of the code, *NOT* at the beginning of the main() entry point. I hope this will solve your problem, Rainer Schoepf