replace ctor with Memory::begin()

This commit is contained in:
Stephen Crane 2014-10-31 08:44:57 +00:00
parent 53cbb2cc3d
commit 848a91c68c
2 changed files with 2 additions and 2 deletions

View File

@ -17,6 +17,6 @@ public:
operator byte() { return 0; }
} nd;
Memory::Memory() {
void Memory::begin() {
put(nd, 0);
}

View File

@ -57,7 +57,7 @@ public:
return *d;
}
Memory();
void begin();
private:
Device *_pages[256];
};