1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-20 03:16:45 +00:00

Documentation updates

This commit is contained in:
Karol Stasiak
2018-06-04 16:24:18 +02:00
parent 0919a98e4b
commit c71af26989
7 changed files with 19 additions and 14 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ This may cause problems if the parameter table is stored next to a hardware regi
* `-O0` Disable all optimizations.
* `-O`, `-O2`, `-O3` Optimize code, various levels.
* `-O`, `-O2` ... `-O8` Optimize code, various levels. For most code, anything above `-O4` doesn't improve it anymore.
* `-O9` Optimize code using superoptimizer (experimental). Computationally expensive, decent results.
+2 -2
View File
@@ -33,7 +33,7 @@ x64 hello_world.prg
The following options are crucial when compiling your sources:
* `-o FILENAME` specifies the base name for your output file, an appropriate file extension will be appended (`prg` for Commodore, `xex` for Atari, `a2` for Apple, `asm` for assembly output, `lbl` for label file)
* `-o FILENAME` specifies the base name for your output file, an appropriate file extension will be appended (`prg` for Commodore, `xex` for Atari, `a2` for Apple, `asm` for assembly output, `lbl` for label file, `inf` for BBC file metadata)
* `-I DIR;DIR;DIR;...` specifies the paths to directories with modules to include.
@@ -41,7 +41,7 @@ The following options are crucial when compiling your sources:
You may be also interested in the following:
* `-O`, `-O2`, `-O3` enable optimization (various levels)
* `-O`, `-O2`, `-O3`, `-O4` enable optimization (various levels)
* `--inline` automatically inline functions for better optimization