|
ComSquare
|
#include <catch2/catch_test_macros.hpp>#include <bitset>#include <iostream>#include "../tests.hpp"#include "../../sources/SNES.hpp"Functions | |
| TEST_CASE ("emulation AND", "[AND]") | |
| TEST_CASE ("nativeNegative AND", "[AND]") | |
| TEST_CASE ("emulationTest AND", "[AND]") | |
| TEST_CASE ("emulationTest TSB", "[TSB]") | |
| TEST_CASE ("nativeTest TSB", "[TSB]") | |
| TEST_CASE ("immediate BIT", "[BIT]") | |
| TEST_CASE ("immediateZero BIT", "[BIT]") | |
| TEST_CASE ("other BIT", "[BIT]") | |
| TEST_CASE ("emulationTest ASL", "[ASL]") | |
| TEST_CASE ("nativeTest ASL", "[ASL]") | |
| TEST_CASE ("accumulator ASL", "[ASL]") | |
| TEST_CASE ("emulationTest LSR", "[LSR]") | |
| TEST_CASE ("nativeTest LSR", "[LSR]") | |
| TEST_CASE ("accumulator LSR", "[LSR]") | |
| TEST_CASE ("emulationTest ROL", "[ROL]") | |
| TEST_CASE ("emulationTestWithCarry ROL", "[ROL]") | |
| TEST_CASE ("nativeTest ROL", "[ROL]") | |
| TEST_CASE ("accumulator ROL", "[ROL]") | |
| TEST_CASE ("emulationTestWithtoutCarry ROR", "[ROR]") | |
| TEST_CASE ("emulationTest ROR", "[ROR]") | |
| TEST_CASE ("nativeTest ROR", "[ROR]") | |
| TEST_CASE ("accumulator ROR", "[ROR]") | |
| TEST_CASE ("emulationTest TRB", "[TRB]") | |
| TEST_CASE ("nativeTest TRB", "[TRB]") | |
| TEST_CASE ("zero TRB", "[TRB]") | |
| TEST_CASE | ( | "accumulator ASL" | , |
| "" | [ASL] | ||
| ) |
| TEST_CASE | ( | "accumulator LSR" | , |
| "" | [LSR] | ||
| ) |
| TEST_CASE | ( | "accumulator ROL" | , |
| "" | [ROL] | ||
| ) |
| TEST_CASE | ( | "accumulator ROR" | , |
| "" | [ROR] | ||
| ) |
| TEST_CASE | ( | "emulation AND" | , |
| "" | [AND] | ||
| ) |
| TEST_CASE | ( | "emulationTest AND" | , |
| "" | [AND] | ||
| ) |
| TEST_CASE | ( | "emulationTest ASL" | , |
| "" | [ASL] | ||
| ) |
| TEST_CASE | ( | "emulationTest LSR" | , |
| "" | [LSR] | ||
| ) |
| TEST_CASE | ( | "emulationTest ROL" | , |
| "" | [ROL] | ||
| ) |
| TEST_CASE | ( | "emulationTest ROR" | , |
| "" | [ROR] | ||
| ) |
| TEST_CASE | ( | "emulationTest TRB" | , |
| "" | [TRB] | ||
| ) |
| TEST_CASE | ( | "emulationTest TSB" | , |
| "" | [TSB] | ||
| ) |
| TEST_CASE | ( | "emulationTestWithCarry ROL" | , |
| "" | [ROL] | ||
| ) |
| TEST_CASE | ( | "emulationTestWithtoutCarry ROR" | , |
| "" | [ROR] | ||
| ) |
| TEST_CASE | ( | "immediate BIT" | , |
| "" | [BIT] | ||
| ) |
| TEST_CASE | ( | "immediateZero BIT" | , |
| "" | [BIT] | ||
| ) |
| TEST_CASE | ( | "nativeNegative AND" | , |
| "" | [AND] | ||
| ) |
| TEST_CASE | ( | "nativeTest ASL" | , |
| "" | [ASL] | ||
| ) |
| TEST_CASE | ( | "nativeTest LSR" | , |
| "" | [LSR] | ||
| ) |
| TEST_CASE | ( | "nativeTest ROL" | , |
| "" | [ROL] | ||
| ) |
| TEST_CASE | ( | "nativeTest ROR" | , |
| "" | [ROR] | ||
| ) |
| TEST_CASE | ( | "nativeTest TRB" | , |
| "" | [TRB] | ||
| ) |
| TEST_CASE | ( | "nativeTest TSB" | , |
| "" | [TSB] | ||
| ) |
| TEST_CASE | ( | "other BIT" | , |
| "" | [BIT] | ||
| ) |
| TEST_CASE | ( | "zero TRB" | , |
| "" | [TRB] | ||
| ) |
1.8.17