EightBit/src/Memory.cpp
Adrian Conlon d199adb027 Tidy EightBit library header usage (avoids compilation error with latest VS2019, "Memory.h")
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
2021-05-29 10:31:32 +01:00

9 lines
182 B
C++

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