EightBit/M6502/HarteTest_6502/opcode_test_suite_t.h

17 lines
402 B
C
Raw Normal View History

#pragma once
#include <string>
#include "parser_t.h"
class opcode_test_suite_t final : public parser_t {
private:
[[nodiscard]] auto array() const noexcept { return raw().get_array(); }
public:
opcode_test_suite_t(std::string path) noexcept;
[[nodiscard]] auto begin() const noexcept { return array().begin(); }
[[nodiscard]] auto end() const noexcept { return array().end(); }
};