From 40aced6d6d5331072986c9ae6f9a583909a32b44 Mon Sep 17 00:00:00 2001 From: Kugel Fuhr <98353208+kugelfuhr@users.noreply.github.com> Date: Thu, 12 Jun 2025 22:02:35 +0200 Subject: [PATCH] Command line switches -dD and -Dm were swapped in the usage information. --- doc/cc65.sgml | 8 ++++---- src/cc65/main.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/cc65.sgml b/doc/cc65.sgml index b53007e46..368d3269c 100644 --- a/doc/cc65.sgml +++ b/doc/cc65.sgml @@ -63,8 +63,8 @@ Short options: -V Print the compiler version number -W [-+]warning[,...] Control warnings ('-' disables, '+' enables) -d Debug mode - -dD Output all macro definitions (needs -E) - -dM Output user defined macros (needs -E) + -dD Output user defined macros (needs -E) + -dM Output all macro definitions (needs -E) -dN Output user defined macro names (needs -E) -g Add debug info to object file -h Help (this text) @@ -200,13 +200,13 @@ Here is a description of all the command line options: -d, --debug Enables debug mode, for debugging the behavior of cc65. - +