Am 25.02.2003 22:51:35, schrieb "Carl Kopin" <carl.ko...@hotpop.com>: > msp430-ld: region text is full (grocc.exe section .text)
did you use "-O2" as compiler option? optimization is turned off by default and that activates it. > Can anyone help me to understand what is going on? I think, there are > manuals included with the msp430_tools; can you teach me how to access them > or other beginner’s manuals? do a CVS checkout of the mss430-libc directory do get the doc.txt. you can also use the browse CVS link on our homepage for web based access. > Another question: what does the cryptic name ‘naked’ mean? I appreciate your > help. that is written in msp430-libx/doc/doc.txt it disables the function entry and exit code that is generated by the compiler. it is useful when doing inlne assembly only functions and a source of strange bugs if not used carefuly. chris