Add a yellowstone stub and partially migrate denali

This commit is contained in:
Drew Galbraith 2023-07-05 14:51:24 -07:00
parent 318356e54c
commit 72483a3437
6 changed files with 57 additions and 29 deletions

View file

@ -0,0 +1,15 @@
#pragma once
#include <mammoth/endpoint_client.h>
#include <mammoth/memory_region.h>
#include <ztypes.h>
class YellowstoneStub {
public:
explicit YellowstoneStub(z_cap_t yellowstone_cap);
glcr::ErrorOr<MappedMemoryRegion> GetAhciConfig();
private:
glcr::UniquePtr<EndpointClient> yellowstone_stub_;
};