1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-09 16:29:34 +00:00
millfork/mkdocs.yml

65 lines
2.7 KiB
YAML
Raw Normal View History

2019-07-15 11:52:05 +00:00
site_name: Millfork documentation
theme: readthedocs
nav:
- Home: index.md
2019-07-15 12:21:50 +00:00
- Index: doc_index.md
2019-07-15 11:52:05 +00:00
- FAQ: various/faq.md
- User guide:
- Getting started: api/getting-started.md
- Command-line option reference: api/command-line.md
- Target platform reference: api/target-platforms.md
- Defining a custom platform: api/custom-platform.md
- Differences between ROM and RAM targets: api/rom-vs-ram.md
- Platform-specific guides:
- Apple 2: api/apple2-programming-guide.md
- Amstrad CPC: api/cpc-programming-guide.md
- Commodore 64: api/commodore-programming-guide.md
- C64 with LUnix: api/lunix-programming-guide.md
- BBC Micro: api/bbcmicro-programming-guide.md
- Game Boy: api/gb-programming-guide.md
- NES/Famicom: api/famicom-programming-guide.md
- Language reference:
- Preprocessor: lang/preprocessor.md
- Syntax: lang/syntax.md
- Types: lang/types.md
- Literals: lang/literals.md
2019-09-03 23:22:40 +00:00
- Predefined constants: lang/predefined_constants.md
2019-07-15 11:52:05 +00:00
- Text encodings: lang/text.md
- Operators: lang/operators.md
- Functions: lang/functions.md
- Inline 6502 assembly: lang/assembly.md
- Inline 8080/LR35902/Z80 assembly: lang/assemblyz80.md
- Inline 6809 assembly: lang/assembly6809.md
2019-07-15 11:52:05 +00:00
- Reentrancy guidelines: lang/reentrancy.md
- List of keywords: lang/keywords.md
2019-07-15 11:52:05 +00:00
- Library reference:
- stdlib module: stdlib/stdlib.md
2019-10-31 16:29:05 +00:00
- string and scrstring modules: stdlib/string.md
2019-07-15 11:52:05 +00:00
- stdio module: stdlib/stdio.md
2020-03-31 17:07:35 +00:00
- err and random modules: stdlib/other.md
- keyboard module: stdlib/keyboard.md
- mouse and x_coord modules: stdlib/mouse.md
- joy module: stdlib/joy.md
2019-09-03 23:22:40 +00:00
- encconv module: stdlib/encconv.md
2020-03-31 17:07:35 +00:00
- Platform-dependent definitions: stdlib/frequent.md
2019-07-15 11:52:05 +00:00
- cbm_file module: stdlib/cbm_file.md
- C64-only modules: stdlib/c64.md
2020-03-31 17:07:35 +00:00
- PET-only modules: stdlib/cbm_pet.md
2019-07-15 11:52:05 +00:00
- NES-only modules: stdlib/nes.md
2019-09-19 23:44:18 +00:00
- Lynx-only modules: stdlib/lynx.md
2019-07-15 11:52:05 +00:00
- Game Boyonly modules: stdlib/gb.md
2019-09-16 20:55:08 +00:00
- X16only modules: stdlib/x16.md
2019-07-15 11:52:05 +00:00
- Implementation details:
- Calling convention: abi/calling-convention.md
- Generated labels: abi/generated-labels.md
- Inlining: abi/inlining.md
- Undefined behaviour: abi/undefined-behaviour.md
- Undocumented instruction support: abi/undocumented.md
- Variable storage: abi/variable-storage.md
- External links:
- Downloads: https://github.com/KarolS/millfork/releases/
- Source code: https://github.com/KarolS/millfork
- 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