mirror of
https://github.com/jscrane/r65emu.git
synced 2025-04-08 16:40:56 +00:00
replace ctor with Memory::begin()
This commit is contained in:
parent
53cbb2cc3d
commit
848a91c68c
@ -17,6 +17,6 @@ public:
|
||||
operator byte() { return 0; }
|
||||
} nd;
|
||||
|
||||
Memory::Memory() {
|
||||
void Memory::begin() {
|
||||
put(nd, 0);
|
||||
}
|
||||
|
2
memory.h
2
memory.h
@ -57,7 +57,7 @@ public:
|
||||
return *d;
|
||||
}
|
||||
|
||||
Memory();
|
||||
void begin();
|
||||
private:
|
||||
Device *_pages[256];
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user