diff --git a/doc/Makefile b/doc/Makefile
index 85b9885bd..86bcfab38 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -31,7 +31,7 @@ TEX = $(SGML:.sgml=.tex)
sgml2txt $<
%.html: %.sgml
- sgml2html --split=1 $<
+ sgml2html --split=1 $<
%.info: %.sgml
sgml2info $<
diff --git a/doc/cc65.sgml b/doc/cc65.sgml
index e25c2db83..b4c9146b1 100644
--- a/doc/cc65.sgml
+++ b/doc/cc65.sgml
@@ -78,6 +78,7 @@ Long options:
--bss-name seg Set the name of the BSS segment
--check-stack Generate stack overflow checks
--code-name seg Set the name of the CODE segment
+ --codesize x Accept larger code by factor x
--cpu type Set cpu type
--data-name seg Set the name of the DATA segment
--debug Debug mode
@@ -114,7 +115,7 @@ Here is a description of all the command line options:
--check-stack
-
+
Tells the compiler to generate code that checks for stack overflows. See
for an
explanation of this feature.
@@ -125,8 +126,16 @@ Here is a description of all the command line options:
Set the name of the code segment.
- --cpu CPU
+ --codesize x
+ This options allows finer control about speed vs. size decisions in the
+ code generation phase. It gives the allowed size increase factor (in
+ percent). The default is 100 when not using --cpu CPU
+
A new, still experimental option. You may specify "6502" or "65C02" as
the CPU. 6502 is the default, so this will not change anything.
Specifying 65C02 will use a few 65C02 instructions when generating code.
@@ -254,7 +263,8 @@ Here is a description of all the command line options:
Using