2019-07-15 11:52:05 +00:00
|
|
|
|
# Documentation index
|
2018-04-02 22:21:26 +00:00
|
|
|
|
|
2019-07-15 11:52:05 +00:00
|
|
|
|
* [Home page](index.md)
|
2018-04-02 22:21:26 +00:00
|
|
|
|
|
|
|
|
|
## 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)
|
|
|
|
|
|
2018-07-27 22:58:20 +00:00
|
|
|
|
* [Literals](lang/literals.md)
|
|
|
|
|
|
2019-09-03 23:14:14 +00:00
|
|
|
|
* [Predefined constants](lang/predefined_constants.md)
|
|
|
|
|
|
2018-07-27 22:58:20 +00:00
|
|
|
|
* [List of text encodings and escape sequences](lang/text.md)
|
|
|
|
|
|
2018-04-02 22:21:26 +00:00
|
|
|
|
* [Operators reference](lang/operators.md)
|
|
|
|
|
|
|
|
|
|
* [Functions](lang/functions.md)
|
|
|
|
|
|
2018-07-24 22:04:00 +00:00
|
|
|
|
* [Inline 6502 assembly syntax](lang/assembly.md)
|
|
|
|
|
|
2018-07-27 17:07:12 +00:00
|
|
|
|
* [Inline 8080/LR35902/Z80 assembly syntax](lang/assemblyz80.md)
|
2018-04-02 22:21:26 +00:00
|
|
|
|
|
|
|
|
|
* [Important guidelines regarding reentrancy](lang/reentrancy.md)
|
|
|
|
|
|
2019-10-07 23:33:55 +00:00
|
|
|
|
* [List of keywords](lang/keywords.md)
|
|
|
|
|
|
2018-07-24 22:04:00 +00:00
|
|
|
|
## Library reference
|
|
|
|
|
|
|
|
|
|
* [`stdlib` module](stdlib/stdlib.md)
|
|
|
|
|
|
2019-10-31 16:29:05 +00:00
|
|
|
|
* [`string` and `scrstring` modules](stdlib/string.md)
|
2018-12-30 17:59:32 +00:00
|
|
|
|
|
2019-06-05 09:46:06 +00:00
|
|
|
|
* [`stdio` module](stdlib/stdio.md)
|
|
|
|
|
|
2018-12-30 17:59:32 +00:00
|
|
|
|
* [Modules for reading input devices](stdlib/input.md)
|
|
|
|
|
|
2019-09-03 23:14:14 +00:00
|
|
|
|
* [`encconv` module](stdlib/encconv.md)
|
|
|
|
|
|
2019-06-26 13:51:09 +00:00
|
|
|
|
* [Other cross-platform modules (`keyboard`, `err`, `random`)](stdlib/other.md)
|
2018-12-30 17:59:32 +00:00
|
|
|
|
|
|
|
|
|
* [Definitions available on only some platforms](stdlib/frequent.md)
|
2018-07-24 22:04:00 +00:00
|
|
|
|
|
|
|
|
|
* [C64-only modules](stdlib/c64.md)
|
|
|
|
|
|
2019-01-05 00:19:14 +00:00
|
|
|
|
* [`cbm_file` module](stdlib/cbm_file.md)
|
|
|
|
|
|
2018-07-24 22:04:00 +00:00
|
|
|
|
* [NES-only modules](stdlib/nes.md)
|
2018-04-02 22:21:26 +00:00
|
|
|
|
|
2019-03-18 22:15:28 +00:00
|
|
|
|
* [Game Boy–only modules](stdlib/gb.md)
|
|
|
|
|
|
2019-09-16 20:55:08 +00:00
|
|
|
|
* [X16–only modules](stdlib/x16.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)
|
2019-07-15 11:52:05 +00:00
|
|
|
|
|
|
|
|
|
## External links
|
|
|
|
|
|
|
|
|
|
* [Example programs](https://github.com/KarolS/millfork/tree/master/examples)
|
|
|
|
|
|
|
|
|
|
* [Millfork wiki](https://github.com/KarolS/millfork/wiki)
|
|
|
|
|
|
|
|
|
|
* [Benchmarks](https://github.com/KarolS/millfork-benchmarks)
|
|
|
|
|
|
|
|
|
|
* [Downloads](https://github.com/KarolS/millfork/releases/)
|
|
|
|
|
|
|
|
|
|
* [Source code](https://github.com/KarolS/millfork)
|
|
|
|
|
|