1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-09 01:29:31 +00:00
millfork/docs/README.md

69 lines
1.5 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)
* [Literals](lang/literals.md)
* [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)
* [Inline 8080/LR35902/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)
* [`string` module](stdlib/string.md)
* [Modules for reading input devices](stdlib/input.md)
* [Other cross-platform modules (`err`, `stdio`, `random`)](stdlib/other.md)
* [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 Boyonly modules](stdlib/gb.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)