Emu:: Add broken function call
This commit is contained in:
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user