1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-28 23:29:51 +00:00

More details on 8086 support (2)

This commit is contained in:
Karol Stasiak 2019-06-15 19:42:51 +02:00
parent 6e4e5863c6
commit 7194bc1f1c

View File

@ -97,6 +97,8 @@ The registers are translated as following:
SP → SP
IX → BP
The `AH` register is used as a temporary register for holding the flags.
The `SI` register is used as a temporary register for holding the address in 8080's `LDAX`/`STAX`
(`LD (DE),A`/`LD(BC),A`/`LD A,(DE)`/`LD A,(BC)` on Z80)
and 8085's undocumented `LDSI`/`SHLX`/`LHLX` (`LD DE,SP+n`/`LD (DE),HL`/`LD HL,(DE)` in Z80 syntax).