@@ -5,11 +5,6 @@
namespace n_e_s::core {
bool operator==(const CpuRegisters &a, const CpuRegisters &b) {
return a.pc == b.pc && a.sp == b.sp && a.a == b.a && a.x == b.x &&
a.y == b.y && a.p == b.p;
}
// Required by gtest to use pascal case.
// NOLINTNEXTLINE(readability-identifier-naming)
void PrintTo(const CpuRegisters &r, std::ostream *os) {