changed "///" to "//" in comments
This commit is contained in:
@@ -6,21 +6,21 @@
|
||||
#define MEMORY_H
|
||||
#include <array>
|
||||
|
||||
/// Eine Hauptspeicherklasse als Singleton implementiert.
|
||||
/// Als Hauptspeicher wird ein Array genutzt.
|
||||
// Eine Hauptspeicherklasse als Singleton implementiert.
|
||||
// Als Hauptspeicher wird ein Array genutzt.
|
||||
|
||||
|
||||
class Memory {
|
||||
private:
|
||||
Memory();
|
||||
|
||||
/// Singleton instance
|
||||
// Singleton instance
|
||||
static Memory *m_instance;
|
||||
/// Hauptspeicher (hier 32 kB groß)
|
||||
// Hauptspeicher (hier 32 kB groß)
|
||||
std::array<int, 8192> m_memory{};
|
||||
|
||||
public:
|
||||
/// Singleton Logik
|
||||
// Singleton Logik
|
||||
Memory(const Memory &) = delete;
|
||||
|
||||
Memory(const Memory &&) = delete;
|
||||
|
||||
Reference in New Issue
Block a user