1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-27 01:19:37 +00:00

Z80: Intel syntax for output.

This commit is contained in:
Karol Stasiak
2018-08-01 21:16:20 +02:00
parent d4beba11a1
commit e952d89849
19 changed files with 362 additions and 55 deletions
+5 -3
View File
@@ -10,7 +10,11 @@ There are two ways to include raw assembly code in your Millfork programs:
## Assembly syntax
Millfork uses Zilog syntax for Intel 8080, Z80 and LR35902 assembly. Intel syntax is not supported.
Millfork uses Zilog syntax for Intel 8080, Z80 and LR35902 assembly.
**Work in progress**:
Intel syntax is not supported yet.
LR35902 instructions for faster access to the $FFxx addresses are not available yet.
Indexing via the IX/IY register uses the following syntax: `IX(1)`
@@ -20,8 +24,6 @@ LR35902 instructions that load/store the accumulator indirectly via HL and then
Only instructions available on the current CPU architecture are available.
Undocumented instructions are not supported, except for `SLL`.
LR35902 instructions for faster access to the $FFxx addresses are not available yet.
Labels have to be followed by a colon and they can optionally be on a separate line.
Indentation is not important: