summaryrefslogtreecommitdiff
path: root/include/mercury/kernel/storage/bd/memory.hpp
blob: e12d565bb6906cbe816466f03b25df832a7b9679 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef MERCURY_KERNEL_STORAGE_BD_MEMORY_HPP
#define MERCURY_KERNEL_STORAGE_BD_MEMORY_HPP

#include <mercury/kernel/storage.hpp>

namespace mercury::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