mirror of
https://github.com/KarolS/millfork.git
synced 2025-03-14 22:31:41 +00:00
Update documentation
This commit is contained in:
parent
a1b868e3df
commit
91a7e42d9f
@ -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:
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user