1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-25 19:17:54 +00:00

Update documentation

This commit is contained in:
Karol Stasiak
2019-03-18 23:15:28 +01:00
parent 43e75276df
commit 7635fc256f
11 changed files with 84 additions and 5 deletions
+6 -1
View File
@@ -119,6 +119,10 @@ If the declared size and the size deduced from the `<initial_values>` don't matc
* on 6502, it means that the array will not cross a page boundary
* on Z80, it means that the array will not cross a page boundary
* `<address>` is a constant expression that defines where in the memory the array is or will be located.
* `<initial_values>` is an array literal, see [Literals](./literals.md)
TODO
### Function declarations
@@ -305,6 +309,7 @@ continue <variable>
### `asm` statements
See [Using assembly within Millfork programs](./assembly.md).
See [Using 6502 assembly within Millfork programs](./assembly.md)
or [Using 8080/LR35902/Z80 assembly within Millfork programs](./assemblyz80.md).