mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-07-10 03:23:58 +00:00
9 lines
182 B
C++
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.");
|
|
}
|