#include "hwd.h" #include #include #include "client.h" namespace hwd { namespace memory { std::vector read(std::size_t len, std::size_t off) { return get_client().call("memory/read", len, off).as>(); } bool write(const std::vector data, std::size_t off) { return get_client().call("memory/write", data, off).as(); } } // namespace memory } // namespace hwd