diff options
author | Michael Pavone <pavone@retrodev.com> | 2019-01-29 22:17:15 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2019-01-29 22:17:15 -0800 |
commit | a8e3afb4499bd2f5a056ad38c1a8035695ad111d (patch) | |
tree | 8550d5e3f0dae22b7dc3ffed4677bb9db95f3798 /z80.cpu | |
parent | b0ac203c086080cca92c96ce69a8f8f3094cc54d (diff) |
fix half-carry for or and xor in new Z80 core
Diffstat (limited to 'z80.cpu')
-rw-r--r-- | z80.cpu | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -583,31 +583,31 @@ fd 11100001 pop_iy 10110RRR or_reg or a main.R a - update_flags SZYH1PXN0C0 + update_flags SZYH0PXN0C0 10110110 or_hl z80_fetch_hl or a scratch1 a - update_flags SZYH1PXN0C0 + update_flags SZYH0PXN0C0 11110110 or_immed z80_fetch_immed or a scratch1 a - update_flags SZYH1PXN0C0 + update_flags SZYH0PXN0C0 10101RRR xor_reg xor a main.R a - update_flags SZYH1PXN0C0 + update_flags SZYH0PXN0C0 10101110 xor_hl z80_fetch_hl xor a scratch1 a - update_flags SZYH1PXN0C0 + update_flags SZYH0PXN0C0 11101110 xor_immed z80_fetch_immed xor a scratch1 a - update_flags SZYH1PXN0C0 + update_flags SZYH0PXN0C0 10111RRR cp_reg cmp main.R a |