EightBit/M6502/HarteTest_6502/opcode_test_suite_t.cpp
Adrian Conlon f85fec3c81 Constify a few statements. Not much difference.
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
2021-10-23 17:46:59 +01:00

17 lines
346 B
C++

#include "stdafx.h"
#include "opcode_test_suite_t.h"
#include <cassert>
#include <exception>
#include <fstream>
#include <filesystem>
simdjson::dom::parser opcode_test_suite_t::m_parser;
opcode_test_suite_t::opcode_test_suite_t(const std::string path)
: m_path(path) {}
void opcode_test_suite_t::load() {
m_raw = m_parser.load(path());
}