aboutsummaryrefslogtreecommitdiffstats
path: root/src/Memory.hpp
blob: eecb0ddc0f1a6caf71796ca868afebd4ed993f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <memory>

namespace DMG01
{
  class Memory
  {
    public:
      std::unique_ptr<unsigned char[]> space;
      Memory();
  };
}