Hi, > My question is, is there anyway to tell the C pre-processor to not > replace GO in the assembly section of the code? Or is there some kind of > escape sequence I can use to keep the GO as is?
For guys like you I introduced #define NO_BIT_DEFINES 1 #include "pic16f690.h" or sdcc -DNO_BIT_DEFINES [...] which prevents pic16f690.h (and all other pic16*.h) from clobbering the global namespace with ... well ... defines for all the bits. Have fun Raphael ------------------------------------------------------------------------------ The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE: Pinpoint memory and threading errors before they happen. Find and fix more than 250 security defects in the development cycle. Locate bottlenecks in serial and parallel code that limit performance. http://p.sf.net/sfu/intel-dev2devfeb _______________________________________________ Sdcc-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sdcc-user
