EightBit/M6502/HarteTest_6502/cycle_t.h
Adrian Conlon 76c03bb4d4 Tidy up header usage.
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
2021-10-24 11:42:43 +01:00

15 lines
275 B
C++

#pragma once
#include <string_view>
#include "simdjson/simdjson.h"
#include "byte_t.h"
class cycle_t final : public byte_t {
public:
cycle_t(simdjson::dom::array input) noexcept;
[[nodiscard]] std::string_view action() const noexcept { return at(2).get_string(); }
};