EightBit/M6502/HarteTest_6502/byte_t.cpp

9 lines
197 B
C++
Raw Normal View History

#include "stdafx.h"
#include "byte_t.h"
byte_t::byte_t(simdjson::dom::element input) noexcept
: byte_t(input.get_array()) {}
byte_t::byte_t(simdjson::dom::array input) noexcept
: m_raw(input) {}