EightBit/src/Memory.cpp
Adrian Conlon a673a64c3f Lots of various changes suggested by the code analysis tools.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-11-27 22:36:54 +00:00

9 lines
175 B
C++

#include "stdafx.h"
#include "Memory.h"
#include <stdexcept>
uint8_t& EightBit::Memory::reference(uint16_t) {
throw std::logic_error("Reference operation not allowed.");
}