1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-05 09:28:54 +00:00

Z80: fix subtraction.

This commit is contained in:
Karol Stasiak 2018-08-06 19:17:08 +02:00
parent 7cf78ca2bd
commit a2eb6fe353

View File

@ -401,7 +401,7 @@ object ZBuiltIns {
setup ++ List(
ZLine.implied(CPL),
ZLine.register(INC, ZRegister.A),
ZLine.register(SUB, lv),
ZLine.register(ADD, lv),
ZLine.ld8(lv, ZRegister.A))
}
}