1
0
mirror of https://github.com/pevans/erc-c.git synced 2025-01-17 04:29:59 +00:00

Remove obsoleted test functions

This commit is contained in:
Peter Evans 2018-01-27 00:16:39 -06:00
parent dde7312864
commit 38d80078d9

View File

@ -27,7 +27,7 @@ Test(mos6502_addr, addr_mode_abs)
cr_assert_eq(mos6502_resolve_abs(cpu), 111);
}
Test(mos6502_addr, addr_mode_abx_carry0)
Test(mos6502_addr, addr_mode_abx)
{
mos6502_set(cpu, 0x1234, 111);
SET_PC_BYTE(cpu, 1, 0x30);
@ -36,25 +36,7 @@ Test(mos6502_addr, addr_mode_abx_carry0)
cr_assert_eq(mos6502_resolve_abx(cpu), 111);
}
Test(mos6502_addr, addr_mode_abx_carry1)
{
mos6502_set(cpu, 0x1234, 111);
SET_PC_BYTE(cpu, 1, 0x30);
SET_PC_BYTE(cpu, 2, 0x12);
cpu->X = 4;
cr_assert_eq(mos6502_resolve_abx(cpu), 111);
}
Test(mos6502_addr, addr_mode_aby_carry0)
{
mos6502_set(cpu, 0x1234, 111);
SET_PC_BYTE(cpu, 1, 0x30);
SET_PC_BYTE(cpu, 2, 0x12);
cpu->Y = 4;
cr_assert_eq(mos6502_resolve_aby(cpu), 111);
}
Test(mos6502_addr, addr_mode_aby_carry1)
Test(mos6502_addr, addr_mode_aby)
{
mos6502_set(cpu, 0x1234, 111);
SET_PC_BYTE(cpu, 1, 0x30);