|
ComSquare
|
#include <catch2/catch_test_macros.hpp>#include <iostream>#include <bitset>#include "../tests.hpp"#include "../../sources/SNES.hpp"Functions | |
| TEST_CASE ("16bitsTo16Bits TAX", "[TAX]") | |
| TEST_CASE ("16bitsTo8Bits TAX", "[TAX]") | |
| TEST_CASE ("8bitsTo16Bits TAX", "[TAX]") | |
| TEST_CASE ("8bitsTo8Bits TAX", "[TAX]") | |
| TEST_CASE ("16bitsTo16Bits TAY", "[TAY]") | |
| TEST_CASE ("16bitsTo8Bits TAY", "[TAY]") | |
| TEST_CASE ("8bitsTo16Bits TAY", "[TAY]") | |
| TEST_CASE ("8bitsTo8Bits TAY", "[TAY]") | |
| TEST_CASE ("16bitsIndex TXS", "[TXS]") | |
| TEST_CASE ("8bitsIndex TXS", "[TXS]") | |
| TEST_CASE ("emulationMode TCD", "[TCD]") | |
| TEST_CASE ("zero TCD", "[TCD]") | |
| TEST_CASE ("emulationMode TCS", "[TCS]") | |
| TEST_CASE ("native TCS", "[TCS]") | |
| TEST_CASE ("emulationMode TDC", "[TDC]") | |
| TEST_CASE ("zero TDC", "[TDC]") | |
| TEST_CASE ("emulationMode TSC", "[TSC]") | |
| TEST_CASE ("zero TSC", "[TSC]") | |
| TEST_CASE ("emulationMode TSX", "[TSX]") | |
| TEST_CASE ("native TSX", "[TSX]") | |
| TEST_CASE ("double8bits TXA", "[TXA]") | |
| TEST_CASE ("index8bits TXA", "[TXA]") | |
| TEST_CASE ("accumulator8bits TXA", "[TXA]") | |
| TEST_CASE ("double16bits TXA", "[TXA]") | |
| TEST_CASE ("double8bits TYA", "[TYA]") | |
| TEST_CASE ("index8bits TYA", "[TYA]") | |
| TEST_CASE ("accumulator8bits TYA", "[TYA]") | |
| TEST_CASE ("double16bits TYA", "[TYA]") | |
| TEST_CASE ("emulationMode TXY", "[TXY]") | |
| TEST_CASE ("nativeMode TXY", "[TXY]") | |
| TEST_CASE ("emulationMode TYX", "[TYX]") | |
| TEST_CASE ("nativeMode TYX", "[TYX]") | |
| TEST_CASE ("hardCase MVN", "[MVN]") | |
| TEST_CASE ("hardCase MVP", "[MVP]") | |
| TEST_CASE | ( | "16bitsIndex TXS" | , |
| "" | [TXS] | ||
| ) |
| TEST_CASE | ( | "16bitsTo16Bits TAX" | , |
| "" | [TAX] | ||
| ) |
| TEST_CASE | ( | "16bitsTo16Bits TAY" | , |
| "" | [TAY] | ||
| ) |
| TEST_CASE | ( | "16bitsTo8Bits TAX" | , |
| "" | [TAX] | ||
| ) |
| TEST_CASE | ( | "16bitsTo8Bits TAY" | , |
| "" | [TAY] | ||
| ) |
| TEST_CASE | ( | "8bitsIndex TXS" | , |
| "" | [TXS] | ||
| ) |
| TEST_CASE | ( | "8bitsTo16Bits TAX" | , |
| "" | [TAX] | ||
| ) |
| TEST_CASE | ( | "8bitsTo16Bits TAY" | , |
| "" | [TAY] | ||
| ) |
| TEST_CASE | ( | "8bitsTo8Bits TAX" | , |
| "" | [TAX] | ||
| ) |
| TEST_CASE | ( | "8bitsTo8Bits TAY" | , |
| "" | [TAY] | ||
| ) |
| TEST_CASE | ( | "accumulator8bits TXA" | , |
| "" | [TXA] | ||
| ) |
| TEST_CASE | ( | "accumulator8bits TYA" | , |
| "" | [TYA] | ||
| ) |
| TEST_CASE | ( | "double16bits TXA" | , |
| "" | [TXA] | ||
| ) |
| TEST_CASE | ( | "double16bits TYA" | , |
| "" | [TYA] | ||
| ) |
| TEST_CASE | ( | "double8bits TXA" | , |
| "" | [TXA] | ||
| ) |
| TEST_CASE | ( | "double8bits TYA" | , |
| "" | [TYA] | ||
| ) |
| TEST_CASE | ( | "emulationMode TCD" | , |
| "" | [TCD] | ||
| ) |
| TEST_CASE | ( | "emulationMode TCS" | , |
| "" | [TCS] | ||
| ) |
| TEST_CASE | ( | "emulationMode TDC" | , |
| "" | [TDC] | ||
| ) |
| TEST_CASE | ( | "emulationMode TSC" | , |
| "" | [TSC] | ||
| ) |
| TEST_CASE | ( | "emulationMode TSX" | , |
| "" | [TSX] | ||
| ) |
| TEST_CASE | ( | "emulationMode TXY" | , |
| "" | [TXY] | ||
| ) |
| TEST_CASE | ( | "emulationMode TYX" | , |
| "" | [TYX] | ||
| ) |
| TEST_CASE | ( | "hardCase MVN" | , |
| "" | [MVN] | ||
| ) |
| TEST_CASE | ( | "hardCase MVP" | , |
| "" | [MVP] | ||
| ) |
| TEST_CASE | ( | "index8bits TXA" | , |
| "" | [TXA] | ||
| ) |
| TEST_CASE | ( | "index8bits TYA" | , |
| "" | [TYA] | ||
| ) |
| TEST_CASE | ( | "native TCS" | , |
| "" | [TCS] | ||
| ) |
| TEST_CASE | ( | "native TSX" | , |
| "" | [TSX] | ||
| ) |
| TEST_CASE | ( | "nativeMode TXY" | , |
| "" | [TXY] | ||
| ) |
| TEST_CASE | ( | "nativeMode TYX" | , |
| "" | [TYX] | ||
| ) |
| TEST_CASE | ( | "zero TCD" | , |
| "" | [TCD] | ||
| ) |
| TEST_CASE | ( | "zero TDC" | , |
| "" | [TDC] | ||
| ) |
| TEST_CASE | ( | "zero TSC" | , |
| "" | [TSC] | ||
| ) |
1.8.17