mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-07-06 06:24:02 +00:00
10 lines
203 B
C++
10 lines
203 B
C++
#include "stdafx.h"
|
|
#include "../inc/Memory.h"
|
|
|
|
#include <cassert>
|
|
|
|
uint8_t& EightBit::Memory::reference(uint16_t) noexcept {
|
|
assert(false && "Reference operation not allowed.");
|
|
return m_delivered;
|
|
}
|