mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 03:07:44 +00:00
f85fec3c81
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
17 lines
346 B
C++
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());
|
|
}
|