1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-21 09:16:34 +00:00

Z80: Add SLS as an alternate mnemonic for SLL

This commit is contained in:
Karol Stasiak
2020-09-27 18:46:19 +02:00
parent 3a9be16107
commit 3af4fcffa9
2 changed files with 3 additions and 3 deletions
@@ -330,7 +330,7 @@ case class Z80Parser(filename: String,
case "RLC" => one8Register(RLC)
case "RRC" => one8Register(RRC)
case "SLA" => one8Register(SLA)
case "SLL" => one8Register(SLL)
case "SLL" | "SLS" => one8Register(SLL)
case "SRA" => one8RegisterOr8085Illegal(SRA, ZRegister.HL, RRHL)
case "SRL" => one8Register(SRL)
case "SWAP" => one8Register(SWAP)