#include "RAM.h" RAM::RAM() { for(int i = 0; i < 992 * 1024; i++) { m_Memory[i] = 0x90; } } uint8_t* RAM::Data() { return m_Memory; }