Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C/C++ User's Guide - the compiler will emit the function name into the object code as a string of http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
The compiler will emit the function name into the object code as a string of
characters just before the function prologue sequence is generated.  The
string is terminated by a byte count of the number of characters in the
string.

         ; void Toaster( int arg )

                 db      "Toaster", 7
         public  Toaster
         Toaster label   byte
                 .
                 .
                 .
                 ret

This option is intended for developers of embedded systems (ROM-based
applications).  It may also be used in conjunction with the "ep" option for
special user-written profiling applications.  The macro __SW_EN will be
predefined if "en" is selected.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson