From e5448f50ebbacc67a16085468716e83c546ec91b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= Date: Thu, 12 Apr 2018 15:13:48 +0200 Subject: [PATCH] Fix expected PC address. --- test/test_emulation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_emulation.c b/test/test_emulation.c index 8e2b696..9b04af3 100644 --- a/test/test_emulation.c +++ b/test/test_emulation.c @@ -1498,7 +1498,7 @@ ATF_TC_BODY(emul_invalid_opcode, tc) ATF_CHECK(e.regs.SP == rorig.SP); ATF_CHECK(e.regs.P == rorig.P); - ATF_CHECK(e.regs.PC == 0xC007); + ATF_CHECK(e.regs.PC == 0xC00A); rk65c02_log(LOG_INFO, "PC: %x", e.regs.PC);