mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-07 20:31:16 +00:00
e63ace34e9
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
17 lines
330 B
C++
17 lines
330 B
C++
#pragma once
|
|
|
|
#include "simdjson/simdjson.h"
|
|
|
|
#include "byte_t.h"
|
|
|
|
class ram_t final {
|
|
private:
|
|
simdjson::dom::array m_raw;;
|
|
|
|
public:
|
|
ram_t(simdjson::dom::array input) noexcept;
|
|
|
|
[[nodiscard]] auto begin() const noexcept { return m_raw.begin(); }
|
|
[[nodiscard]] auto end() const noexcept { return m_raw.end(); }
|
|
};
|