This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/include/hilbert/kernel/storage/bd/memory.hpp

22 lines
409 B
C++

#ifndef HILBERT_KERNEL_STORAGE_BD_MEMORY_HPP
#define HILBERT_KERNEL_STORAGE_BD_MEMORY_HPP
#include <hilbert/kernel/storage.hpp>
namespace hilbert::kernel::storage::bd {
class memory : public block_device {
private:
uint8_t *buffer;
public:
memory(void *buffer, uint64_t buffer_len);
bd_result read_blocks_no_cache(uint64_t start, uint64_t count, void *into) override;
};
}
#endif