1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-10-03 20:55:36 +00:00

8080: parse "DEC BC" correctly

This commit is contained in:
Karol Stasiak 2019-01-11 15:16:28 +01:00
parent 56c806ffa3
commit f71b6a0b04

View File

@ -256,7 +256,7 @@ case class Z80Parser(filename: String,
case "OR" => one8Register(OR)
case "XOR" => one8Register(XOR)
case "SUB" => one8Register(SUB)
case "DEC" => one8Or16Register(DEC, INC_16)
case "DEC" => one8Or16Register(DEC, DEC_16)
case "INC" => one8Or16Register(INC, INC_16)
case "RLA" => imm(RLA)