1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-03-14 22:31:41 +00:00

Update documentation

This commit is contained in:
Karol Stasiak 2019-06-12 00:20:24 +02:00
parent a1b868e3df
commit 91a7e42d9f
2 changed files with 9 additions and 2 deletions

View File

@ -80,6 +80,7 @@ and the most significant word is passed via the DE register pair
The Intel 8086 calling conventions is based on the Intel 8080 calling convention,
plus it uses the BP register in the same role as the IX register of Z80.
The DI register is not used.
#### Parameters:

View File

@ -8,6 +8,12 @@
## Automatic inlining
`-finline` command-line option
You can control inlining behavior in several ways:
* functions declared with the `inline` keyword will be inlined if possible
* functions declared with the `noinline` keyword will never be inlined
* the remaining functions may be inlined only if the `-finline` command-line option is enabled
and the compiler decides the function is worth doing
`inline` and `noinline` keyword