1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-28 13:41:31 +00:00
millfork/docs/README.md

55 lines
1.1 KiB
Markdown
Raw Normal View History

2018-04-02 22:21:26 +00:00
# Documentation
**★ WORK IN PROGRESS ★**
## Compiler usage
* [Getting started](api/getting-started.md)
* [Command-line option reference](api/command-line.md)
* [Target platform reference](api/target-platforms.md)
2018-07-24 22:04:00 +00:00
* [Defining a custom platform](api/custom-platform.md)
2018-04-02 22:21:26 +00:00
## Language reference
2018-07-24 22:04:00 +00:00
* [Preprocessor](lang/preprocessor.md)
2018-04-02 22:21:26 +00:00
* [Syntax](lang/syntax.md)
* [Types](lang/types.md)
* [Operators reference](lang/operators.md)
* [Functions](lang/functions.md)
2018-07-24 22:04:00 +00:00
* [Inline 6502 assembly syntax](lang/assembly.md)
* [Inline Z80 assembly syntax](lang/assemblyz80.md)
2018-04-02 22:21:26 +00:00
* [Important guidelines regarding reentrancy](lang/reentrancy.md)
2018-07-24 22:04:00 +00:00
## Library reference
* [`stdlib` module](stdlib/stdlib.md)
* [Other cross-platform modules](stdlib/other.md)
* [C64-only modules](stdlib/c64.md)
* [NES-only modules](stdlib/nes.md)
2018-04-02 22:21:26 +00:00
## Implementation details
* [Variable storage](abi/variable-storage.md)
2018-07-24 22:04:00 +00:00
* [Calling convention](abi/calling-convention.md)
2018-04-02 22:21:26 +00:00
* [Undefined behaviour](abi/undefined-behaviour.md)
* [Undocumented instruction support](abi/undocumented.md)
* [Reference for labels in generated assembly code](abi/generated-labels.md)