EXI_Channel: Move SetEXIINT implementation into the cpp file
This commit is contained in:
parent
edf8a79005
commit
387769b4e2
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue