2014-03-30 22:09:49 +02:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "SPURSManager.h"
|
2014-06-08 11:10:31 +02:00
|
|
|
#include "Emu/Memory/Memory.h"
|
2014-03-30 22:09:49 +02:00
|
|
|
|
|
|
|
|
SPURSManager::SPURSManager(SPURSManagerAttribute *attr)
|
|
|
|
|
{
|
|
|
|
|
this->attr = attr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SPURSManager::Finalize()
|
|
|
|
|
{
|
|
|
|
|
delete this->attr;
|
2014-06-08 11:10:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SPURSManager::AttachLv2EventQueue(u32 queue, mem8_t port, int isDynamic)
|
|
|
|
|
{
|
|
|
|
|
//TODO:
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SPURSManager::DetachLv2EventQueue(u8 port)
|
|
|
|
|
{
|
|
|
|
|
//TODO:
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SPURSManagerTaskset::SPURSManagerTaskset(u32 address, SPURSManagerTasksetAttribute *tattr)
|
|
|
|
|
{
|
|
|
|
|
this->tattr = tattr;
|
|
|
|
|
this->address = address;
|
|
|
|
|
}
|