mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-28 11:31:58 +00:00
Z80: Add SLS as an alternate mnemonic for SLL
This commit is contained in:
parent
3a9be16107
commit
3af4fcffa9
@ -263,8 +263,8 @@ Intel syntax | Zilog syntax
|
||||
**SLAY d** | **SLA IY(d)**
|
||||
**SRAY d** | **SRA IY(d)**
|
||||
**SRLY d** | **SRL IY(d)**
|
||||
**SLLR r** | **SLL r**
|
||||
**SLLY d** | **SLL IY(d)**
|
||||
**SLLR r** | **SLL r**, SLS r
|
||||
**SLLY d** | **SLL IY(d)**, SLS IY(d)
|
||||
**SPIY** | **LD SP,IY**
|
||||
**PUSHIY**, PUSH IY | **PUSH IY**
|
||||
**POPIY**, POP IY | **POP IY**
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user