From f376f006884453ed33fa0c1b804b0f2706abd41c Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Sun, 25 Feb 2018 16:16:14 -0600 Subject: [PATCH] Fix scan test not to rely on buggy operand output --- tests/mos6502.dis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mos6502.dis.c b/tests/mos6502.dis.c index 4e4a773..84ce150 100644 --- a/tests/mos6502.dis.c +++ b/tests/mos6502.dis.c @@ -231,6 +231,6 @@ Test(mos6502_dis, scan) // runtime operation) when you don't want it to, but as a standalone // disassembler, it feels less useful when PC isn't emulated. assert_buf("0000:29 38 AND #$38\n" - "0000:88 DEY #$38\n" + "0000:88 DEY \n" "0000:6C 34 12 JMP ($1234)\n"); }