Path: blob/a-new-beginning/Cherry/Core/ColecoVisionIOPorts.cpp
2 views
/*1* Gearcoleco - ColecoVision Emulator2* Copyright (C) 2021 Ignacio Sanchez34* This program is free software: you can redistribute it and/or modify5* it under the terms of the GNU General Public License as published by6* the Free Software Foundation, either version 3 of the License, or7* any later version.89* This program is distributed in the hope that it will be useful,10* but WITHOUT ANY WARRANTY; without even the implied warranty of11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12* GNU General Public License for more details.1314* You should have received a copy of the GNU General Public License15* along with this program. If not, see http://www.gnu.org/licenses/16*17*/1819#include "ColecoVisionIOPorts.h"2021ColecoVisionIOPorts::ColecoVisionIOPorts(Audio* pAudio, Video* pVideo, Input* pInput, Cartridge* pCartridge, CVMemory* pMemory, Processor* pProcessor)22{23m_pAudio = pAudio;24m_pVideo = pVideo;25m_pInput = pInput;26m_pCartridge = pCartridge;27m_pMemory = pMemory;28m_pProcessor = pProcessor;29}3031ColecoVisionIOPorts::~ColecoVisionIOPorts()32{33}3435void ColecoVisionIOPorts::Reset()36{3738}394041