Emu:: Add broken function call

This commit is contained in:
Frank
2022-08-18 01:28:38 +02:00
parent 31dc57733f
commit 083cf2f732
3 changed files with 14 additions and 6 deletions
+9
View File
@@ -23,4 +23,13 @@ void Emu::addMemorySpace(const char* name, int size) {
std::vector<uint8_t> memory;
memory.reserve(size);
m_memory_spaces.emplace(name, memory);
}
void Emu::writeMemory(const char* memory_space, unsigned int location, uint8_t value) {
// printf("%s %d %d", memory_space, location, value);
// m_memory_spaces[memory_space][location] = value;
}
uint8_t Emu::readMemory(const char* memory_space, unsigned int location){
// return m_memory_spaces[memory_space][location];
}