Merge pull request #2 from folkertvanheusden/BIC

BIC(B) &  V flag
This commit is contained in:
Neil Webber 2024-03-28 17:08:13 -05:00 committed by GitHub
commit 954dd1240e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

1
op4.py
View file

@ -150,6 +150,7 @@ def op04_bic(cpu, inst, opsize=2):
cpu.psw_n = dst & cpu.SIGN816[opsize] cpu.psw_n = dst & cpu.SIGN816[opsize]
cpu.psw_z = (dst == 0) cpu.psw_z = (dst == 0)
cpu.psw_v = 0
cpu.operandx(xb6, dst, opsize=opsize) cpu.operandx(xb6, dst, opsize=opsize)