According to page 67 of PDP1120_Handbook_1972.pdf, BIC and BICB shall
clear the V flag when invoked.
This commit is contained in:
parent
981efedeed
commit
dfdec49007
1 changed files with 1 additions and 0 deletions
1
op4.py
1
op4.py
|
@ -150,6 +150,7 @@ def op04_bic(cpu, inst, opsize=2):
|
|||
|
||||
cpu.psw_n = dst & cpu.SIGN816[opsize]
|
||||
cpu.psw_z = (dst == 0)
|
||||
cpu.psw_v = 0
|
||||
|
||||
cpu.operandx(xb6, dst, opsize=opsize)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue