1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-10-01 09:57:47 +00:00
erc-c/tests/mos6502.arith.c

194 lines
4.1 KiB
C
Raw Normal View History

2017-12-04 02:19:17 +00:00
#include <criterion/criterion.h>
#include "mos6502.h"
#include "mos6502.enums.h"
#include "mos6502.tests.h"
2017-12-04 02:19:17 +00:00
TestSuite(mos6502_arith, .init = setup, .fini = teardown);
2017-12-04 02:19:17 +00:00
Test(mos6502_arith, adc)
{
2017-12-04 02:19:17 +00:00
cpu->A = 5;
mos6502_handle_adc(cpu, 3);
2018-01-23 22:28:39 +00:00
cr_assert_eq(cpu->A, 9);
2017-12-04 02:19:17 +00:00
2018-03-01 23:24:51 +00:00
cpu->A = 0xfe;
mos6502_handle_adc(cpu, 0x5);
cr_assert_eq(cpu->A, (vm_8bit)(0xfe + 0x5));
2018-01-23 22:28:39 +00:00
cpu->P &= ~MOS_CARRY;
2018-03-01 23:24:51 +00:00
cpu->A = 9;
2017-12-04 02:19:17 +00:00
mos6502_handle_adc(cpu, 64);
cr_assert_eq(cpu->A, 73);
2018-02-27 02:02:58 +00:00
// This should handle decimal mode without complaint
cpu->P |= MOS_DECIMAL;
cpu->A = 0x18;
mos6502_handle_adc(cpu, 0x3);
cr_assert_eq(cpu->A, 0x21);
2017-12-04 02:19:17 +00:00
}
Test(mos6502_arith, adc_dec)
{
cpu->P &= ~MOS_CARRY;
cpu->A = 0x05;
mos6502_handle_adc_dec(cpu, 0x10);
cr_assert_eq(cpu->A, 0x15);
2018-03-01 23:24:51 +00:00
cpu->A = 0x98;
mos6502_handle_adc_dec(cpu, 0x3);
cr_assert_eq(cpu->A, 0x1);
// Test that A + M + 1 works for carry
cpu->P |= MOS_CARRY;
2018-03-01 23:24:51 +00:00
cpu->A = 0x15;
mos6502_handle_adc_dec(cpu, 0x13);
cr_assert_eq(cpu->A, 0x29);
}
Test(mos6502_arith, cmp)
2017-12-04 02:19:17 +00:00
{
cpu->A = 5;
mos6502_handle_cmp(cpu, 3);
2018-01-05 20:18:39 +00:00
cr_assert_eq(cpu->P & MOS_CARRY, MOS_CARRY);
cr_assert_eq(cpu->P & MOS_NEGATIVE, 0);
cr_assert_eq(cpu->P & MOS_ZERO, 0);
2017-12-04 02:19:17 +00:00
cpu->A = 3;
mos6502_handle_cmp(cpu, 4);
2018-01-05 20:18:39 +00:00
cr_assert_eq(cpu->P & MOS_CARRY, 0);
cr_assert_eq(cpu->P & MOS_NEGATIVE, MOS_NEGATIVE);
cr_assert_eq(cpu->P & MOS_ZERO, 0);
2017-12-04 02:19:17 +00:00
cpu->A = 192;
mos6502_handle_cmp(cpu, 3);
2018-01-05 20:18:39 +00:00
cr_assert_eq(cpu->P & MOS_CARRY, MOS_CARRY);
cr_assert_eq(cpu->P & MOS_NEGATIVE, MOS_NEGATIVE);
cr_assert_eq(cpu->P & MOS_ZERO, 0);
2018-03-01 23:24:51 +00:00
cpu->A = 111;
mos6502_handle_cmp(cpu, 111);
cr_assert_eq(cpu->P & MOS_ZERO, MOS_ZERO);
2017-12-04 02:19:17 +00:00
}
Test(mos6502_arith, cpx)
2017-12-04 02:19:17 +00:00
{
cpu->X = 5;
mos6502_handle_cpx(cpu, 3);
2018-01-05 20:18:39 +00:00
cr_assert_eq(cpu->P & MOS_CARRY, MOS_CARRY);
cr_assert_eq(cpu->P & MOS_NEGATIVE, 0);
cr_assert_eq(cpu->P & MOS_ZERO, 0);
2017-12-04 02:19:17 +00:00
}
Test(mos6502_arith, cpy)
2017-12-04 02:19:17 +00:00
{
cpu->Y = 5;
mos6502_handle_cpy(cpu, 3);
2018-01-05 20:18:39 +00:00
cr_assert_eq(cpu->P & MOS_CARRY, MOS_CARRY);
cr_assert_eq(cpu->P & MOS_NEGATIVE, 0);
cr_assert_eq(cpu->P & MOS_ZERO, 0);
2017-12-04 02:19:17 +00:00
}
Test(mos6502_arith, dec)
2017-12-04 02:19:17 +00:00
{
cpu->A = 5;
mos6502_handle_dec(cpu, 0);
cr_assert_eq(cpu->A, 4);
2017-12-04 02:19:17 +00:00
2018-01-12 19:57:48 +00:00
cpu->eff_addr = 123;
mos6502_set(cpu, 123, 44);
2017-12-04 02:19:17 +00:00
// Note _also_ that DEC expects the number to be decremented will be
// passed in as the effective operand, although it doesn't
// necessarily need for that to be so.
mos6502_handle_dec(cpu, 44);
cr_assert_eq(mos6502_get(cpu, 123), 43);
2018-03-01 23:24:51 +00:00
cpu->eff_addr = 0;
cpu->A = 0;
mos6502_handle_dec(cpu, 0);
cr_assert_eq(cpu->A, 0xff);
2017-12-04 02:19:17 +00:00
}
Test(mos6502_arith, dex)
2017-12-04 02:19:17 +00:00
{
cpu->X = 5;
mos6502_handle_dex(cpu, 0);
cr_assert_eq(cpu->X, 4);
}
Test(mos6502_arith, dey)
2017-12-04 02:19:17 +00:00
{
cpu->Y = 5;
mos6502_handle_dey(cpu, 0);
cr_assert_eq(cpu->Y, 4);
}
Test(mos6502_arith, inc)
2017-12-04 02:19:17 +00:00
{
2018-01-12 19:57:48 +00:00
cpu->eff_addr = 123;
2017-12-04 02:19:17 +00:00
mos6502_handle_inc(cpu, 55);
cr_assert_eq(mos6502_get(cpu, 123), 56);
cpu->A = 8;
cpu->eff_addr = 0;
mos6502_handle_inc(cpu, 0);
cr_assert_eq(cpu->A, 9);
2018-03-01 23:24:51 +00:00
cpu->A = 0xff;
mos6502_handle_inc(cpu, 0);
cr_assert_eq(cpu->A, 0);
2017-12-04 02:19:17 +00:00
}
Test(mos6502_arith, inx)
2017-12-04 02:19:17 +00:00
{
cpu->X = 5;
mos6502_handle_inx(cpu, 0);
cr_assert_eq(cpu->X, 6);
}
Test(mos6502_arith, iny)
2017-12-04 02:19:17 +00:00
{
cpu->Y = 5;
mos6502_handle_iny(cpu, 0);
cr_assert_eq(cpu->Y, 6);
}
Test(mos6502_arith, sbc)
2017-12-04 02:19:17 +00:00
{
cpu->A = 5;
mos6502_handle_sbc(cpu, 3);
cr_assert_eq(cpu->A, 2);
2017-12-04 02:19:17 +00:00
2018-03-01 23:24:51 +00:00
cpu->A = 0x3;
mos6502_handle_sbc(cpu, 5);
cr_assert_eq(cpu->A, (vm_8bit)(0x3 - 0x5));
2018-01-23 22:30:52 +00:00
cpu->P &= ~MOS_CARRY;
2017-12-04 02:19:17 +00:00
cpu->A = 16;
mos6502_handle_sbc(cpu, 8);
cr_assert_eq(cpu->A, 7);
cpu->P |= MOS_DECIMAL;
cpu->A = 0x12;
mos6502_handle_sbc(cpu, 0x3);
cr_assert_eq(cpu->A, 0x9);
2017-12-04 02:19:17 +00:00
}
Test(mos6502_arith, sbc_dec)
{
cpu->P = 0;
cpu->A = 0x15;
mos6502_handle_sbc_dec(cpu, 0x6);
cr_assert_eq(cpu->A, 0x8);
cpu->P |= MOS_CARRY;
cpu->A = 0x12;
mos6502_handle_sbc_dec(cpu, 0x2);
cr_assert_eq(cpu->A, 0x10);
2018-03-01 23:24:51 +00:00
cpu->A = 0x2;
mos6502_handle_sbc_dec(cpu, 0x3);
cr_assert_eq(cpu->A, 0x99);
}