From 4682d7542a12a319a6a412193802a70a8980558a Mon Sep 17 00:00:00 2001 From: uz Date: Tue, 6 Nov 2012 20:24:44 +0000 Subject: [PATCH] Add -d (debug mode) to the assembler options. In studyexpr, use the debug flag, not the verbose flag to decide if the studied expression should be output. git-svn-id: svn://svn.cc65.org/cc65/trunk@5919 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- doc/ca65.sgml | 8 ++++++++ src/ca65/main.c | 19 ++++++++++++++++++- src/ca65/studyexpr.c | 4 ++-- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/doc/ca65.sgml b/doc/ca65.sgml index 4a14d0276..af762b90a 100644 --- a/doc/ca65.sgml +++ b/doc/ca65.sgml @@ -92,6 +92,7 @@ Short options: -U Mark unresolved symbols as import -V Print the assembler version -W n Set warning level n + -d Debug mode -g Add debug info to object file -h Help (this text) -i Ignore case of symbols @@ -108,6 +109,7 @@ Long options: --cpu type Set cpu type --create-dep name Create a make dependency file --create-full-dep name Create a full make dependency file + --debug Debug mode --debug-info Add debug info to object file --feature name Set an emulation feature --forget-inc-paths Forget include search paths @@ -175,6 +177,12 @@ Here is a description of all the command line options: information to the assembler. + -d, --debug + + Enables debug mode, something that should not be needed for mere + mortals:-) + +