1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-07 15:29:04 +00:00
erc-c/tests/mos6502.stat.c
2017-12-03 20:19:17 -06:00

83 lines
1.3 KiB
C

#include <criterion/criterion.h>
#include "mos6502.h"
#include "mos6502.enums.h"
Test(mos6502, clc)
{
START_CPU_TEST(mos6502);
cpu->P = CARRY | DECIMAL;
mos6502_handle_clc(cpu, 0);
cr_assert_eq(cpu->P & CARRY, 0);
END_CPU_TEST(mos6502);
}
Test(mos6502, cld)
{
START_CPU_TEST(mos6502);
cpu->P = DECIMAL | CARRY;
mos6502_handle_cld(cpu, 0);
cr_assert_eq(cpu->P & DECIMAL, 0);
END_CPU_TEST(mos6502);
}
Test(mos6502, cli)
{
START_CPU_TEST(mos6502);
cpu->P = CARRY | INTERRUPT;
mos6502_handle_cli(cpu, 0);
cr_assert_eq(cpu->P & INTERRUPT, 0);
END_CPU_TEST(mos6502);
}
Test(mos6502, clv)
{
START_CPU_TEST(mos6502);
cpu->P = CARRY | OVERFLOW;
mos6502_handle_clv(cpu, 0);
cr_assert_eq(cpu->P & OVERFLOW, 0);
END_CPU_TEST(mos6502);
}
Test(mos6502, sec)
{
START_CPU_TEST(mos6502);
cpu->P = 0;
mos6502_handle_sec(cpu, 0);
cr_assert_eq(cpu->P & CARRY, CARRY);
END_CPU_TEST(mos6502);
}
Test(mos6502, sed)
{
START_CPU_TEST(mos6502);
cpu->P = 0;
mos6502_handle_sed(cpu, 0);
cr_assert_eq(cpu->P & DECIMAL, DECIMAL);
END_CPU_TEST(mos6502);
}
Test(mos6502, sei)
{
START_CPU_TEST(mos6502);
cpu->P = 0;
mos6502_handle_sei(cpu, 0);
cr_assert_eq(cpu->P & INTERRUPT, INTERRUPT);
END_CPU_TEST(mos6502);
}