Added --dump-all
git-svn-id: svn://svn.cc65.org/cc65/trunk@241 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -44,17 +44,18 @@
|
||||
|
||||
|
||||
|
||||
#define D_HEADER 0x00000001UL /* Dump the header */
|
||||
#define D_OPTIONS 0x00000002UL /* Dump the options */
|
||||
#define D_FILES 0x00000004UL /* Dump source file info */
|
||||
#define D_SEGMENTS 0x00000008UL /* Dump segment info */
|
||||
#define D_IMPORTS 0x00000010UL /* Dump imported symbols */
|
||||
#define D_EXPORTS 0x00000020UL /* Dump exported symbols */
|
||||
#define D_DBGSYMS 0x00000040UL /* Dump debug symbols */
|
||||
#define D_HEADER 0x0001U /* Dump the header */
|
||||
#define D_OPTIONS 0x0002U /* Dump the options */
|
||||
#define D_FILES 0x0004U /* Dump source file info */
|
||||
#define D_SEGMENTS 0x0008U /* Dump segment info */
|
||||
#define D_IMPORTS 0x0010U /* Dump imported symbols */
|
||||
#define D_EXPORTS 0x0020U /* Dump exported symbols */
|
||||
#define D_DBGSYMS 0x0040U /* Dump debug symbols */
|
||||
#define D_ALL 0xFFFFU /* Dump anything */
|
||||
|
||||
|
||||
|
||||
extern unsigned long What; /* What should get dumped? */
|
||||
extern unsigned What; /* What should get dumped? */
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user