EXI_Channel: Move SetEXIINT implementation into the cpp file

This commit is contained in:
Lioncash 2017-01-21 19:05:14 -05:00
parent edf8a79005
commit 387769b4e2
2 changed files with 6 additions and 1 deletions

View File

@ -253,6 +253,11 @@ void CEXIChannel::PauseAndLock(bool do_lock, bool resume_on_unlock)
device->PauseAndLock(do_lock, resume_on_unlock);
}
void CEXIChannel::SetEXIINT(bool exiint)
{
m_status.EXIINT = !!exiint;
}
IEXIDevice* CEXIChannel::FindDevice(TEXIDevices device_type, int custom_index)
{
for (auto& sup : m_devices)

View File

@ -42,7 +42,7 @@ public:
void PauseAndLock(bool do_lock, bool resume_on_unlock);
// This should only be used to transition interrupts from SP1 to Channel 2
void SetEXIINT(bool exiint) { m_status.EXIINT = !!exiint; }
void SetEXIINT(bool exiint);
private:
enum