Skip to content

Commit

Permalink
Disable (dp,X) E=1 test that fails on real SNES - requires research
Browse files Browse the repository at this point in the history
  • Loading branch information
gilyon committed Oct 26, 2023
1 parent 589b395 commit bf38f8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cputest/make_cpu_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,8 @@ def do_test(operand, add_flag='', mem=None, **kwargs2):
do_test('($EF,x)', mem=0x7F1234, x=0x10, d=0x0100, mem_01FF=0x34, mem_0100=0x12, dbr=0x7F, add_flag='E')
do_test('($F0,x)', mem=0x7F1234, x=0x10, d=0x0100, memw_0100=0x1234, dbr=0x7F, add_flag='E')
# No page wrap with DL != 0.
do_test('($EE,x)', mem=0x7F1234, x=0x10, d=0x0101, memw_01FF=0x1234, dbr=0x7F, add_flag='E')
# This fails on SNES despite matching the documentation - disabling test until further research
# do_test('($EE,x)', mem=0x7F1234, x=0x10, d=0x0101, mem_01FF=0x34, mem_0100=0x12, dbr=0x7F, add_flag='E')
elif mode == A_IND_DIR_Y:
assert operand_uses_m_size
do_test('($34),y', mem=0x7F0FDC, y=0x1100, d=0xffff, memw_0033=0xFEDC, dbr=0x7E)
Expand Down

0 comments on commit bf38f8c

Please sign in to comment.